69 lines
1.9 KiB
YAML
69 lines
1.9 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
photoview-db:
|
|
image: mariadb:10.5
|
|
container_name: photoview-db
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
networks:
|
|
- proxy
|
|
volumes:
|
|
- photoview-db-data:/var/lib/mysql
|
|
environment:
|
|
- MYSQL_DATABASE=photoview
|
|
- MYSQL_USER=photoview
|
|
- MYSQL_RANDOM_ROOT_PASSWORD=photoview
|
|
- MYSQL_PASSWORD=photosecret
|
|
ports:
|
|
- 3306
|
|
|
|
photoview:
|
|
image: viktorstrate/photoview:2
|
|
container_name: photoview
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
networks:
|
|
- proxy
|
|
ports:
|
|
- 80
|
|
depends_on:
|
|
- photoview-db
|
|
|
|
environment:
|
|
- PHOTOVIEW_DATABASE_DRIVER=mysql
|
|
- PHOTOVIEW_MYSQL_URL=photoview:photosecret@tcp(photoview-db)/photoview
|
|
- PHOTOVIEW_LISTEN_IP=photoview
|
|
- PHOTOVIEW_LISTEN_PORT=80
|
|
- PHOTOVIEW_MEDIA_CACHE=/app/cache
|
|
- TZ=America/Chicago
|
|
|
|
# Optional: If you are using Samba/CIFS-Share and experience problems with "directory not found"
|
|
# Enable the following Godebug
|
|
# - GODEBUG=asyncpreemptoff=1
|
|
|
|
# Optional: To enable map related features, you need to create a mapbox token.
|
|
# A token can be generated for free here https://account.mapbox.com/access-tokens/
|
|
# It's a good idea to limit the scope of the token to your own domain, to prevent others from using it.
|
|
# - MAPBOX_TOKEN=<YOUR TOKEN HERE>
|
|
|
|
volumes:
|
|
- photoview-cache:/app/cache
|
|
|
|
# Change This: to the directory where your photos are located on your server.
|
|
# If the photos are located at `/home/user/photos`, then change this value
|
|
# to the following: `/home/user/photos:/photos:ro`.
|
|
# You can mount multiple paths, if your photos are spread across multiple directories.
|
|
- photoview:/photos
|
|
|
|
labels:
|
|
kompose.service.expose: photoview.wayl.one
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|
|
volumes:
|
|
photoview-db-data:
|
|
photoview-cache:
|
|
photoview:
|