This repository has been archived on 2021-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
photoview-docker/docker-compose.yml

25 lines
425 B
YAML
Raw Normal View History

2020-12-30 17:30:52 +01:00
version: "3"
services:
photoview:
2020-12-30 17:53:04 +01:00
container_name: photoview
2020-12-30 17:30:52 +01:00
image: viktorstrate/photoview:latest
restart: always
ports:
- "8123:80"
2021-07-22 15:53:05 +02:00
extra_hosts:
- "host.docker:host-gateway"
2020-12-30 17:30:52 +01:00
env_file:
- photoview.env
- mapbox.env
2021-07-22 15:53:05 +02:00
- db.env
2020-12-30 17:30:52 +01:00
volumes:
- api_cache:/app/cache
- /home/edpibu/Pictures:/edpibu/Pictures:ro
2021-07-22 15:53:05 +02:00
- /srv/evg:/srv/evg:ro
2020-12-30 17:30:52 +01:00
volumes:
api_cache: