mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
19 lines
404 B
YAML
19 lines
404 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
pigallery2:
|
||
|
image: bpatrik/pigallery2:nightly-stretch
|
||
|
container_name: pigallery2
|
||
|
environment:
|
||
|
- NODE_ENV=production
|
||
|
volumes:
|
||
|
- "./pigallery2/config:/app/data/config"
|
||
|
- "db-data:/app/data/db"
|
||
|
- "./pigallery2/images:/app/data/images"
|
||
|
- "./pigallery2/tmp:/app/data/tmp"
|
||
|
ports:
|
||
|
- 80:80
|
||
|
restart: always
|
||
|
|
||
|
volumes:
|
||
|
db-data:
|