mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
32 lines
809 B
YAML
32 lines
809 B
YAML
version: '3'
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: nginx
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
- ./nginx/error.log:/etc/nginx/error_log.log
|
|
- ./nginx/cache/:/etc/nginx/cache
|
|
- /etc/letsencrypt/:/etc/letsencrypt/
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
restart: always
|
|
|
|
pigallery2:
|
|
image: bpatrik/pigallery2:latest
|
|
container_name: pigallery2
|
|
environment:
|
|
- NODE_ENV=production # set to 'debug' for full debug logging
|
|
volumes:
|
|
- "./pigallery2/config:/app/data/config" # CHANGE ME
|
|
- "db-data:/app/data/db"
|
|
- "./pigallery2/images:/app/data/images:ro" # CHANGE ME, ':ro' means read-only
|
|
- "./pigallery2/tmp:/app/data/tmp" # CHANGE ME
|
|
expose:
|
|
- "80"
|
|
restart: always
|
|
|
|
volumes:
|
|
db-data:
|