2019-12-24 04:07:34 +08:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
nginx:
|
|
|
|
image: nginx:latest
|
2019-12-31 03:48:25 +08:00
|
|
|
container_name: nginx
|
2019-12-24 04:07:34 +08:00
|
|
|
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:
|
2022-03-13 04:39:22 +08:00
|
|
|
image: bpatrik/pigallery2:latest
|
2019-12-24 04:07:34 +08:00
|
|
|
container_name: pigallery2
|
|
|
|
environment:
|
2023-01-05 06:19:14 +08:00
|
|
|
- NODE_ENV=production # set to 'debug' for full debug logging
|
2023-12-03 16:38:29 +08:00
|
|
|
# - NODE_OPTIONS=--enable-source-maps # enable source map support on the backend for development
|
2019-12-24 04:07:34 +08:00
|
|
|
volumes:
|
2020-01-17 18:55:10 +08:00
|
|
|
- "./pigallery2/config:/app/data/config" # CHANGE ME
|
2019-12-24 04:07:34 +08:00
|
|
|
- "db-data:/app/data/db"
|
2023-01-05 06:25:59 +08:00
|
|
|
- "./pigallery2/images:/app/data/images:ro" # CHANGE ME, ':ro' means read-only
|
2020-01-17 18:55:10 +08:00
|
|
|
- "./pigallery2/tmp:/app/data/tmp" # CHANGE ME
|
2019-12-24 04:07:34 +08:00
|
|
|
expose:
|
|
|
|
- "80"
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
db-data:
|