mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
19 lines
456 B
YAML
19 lines
456 B
YAML
version: '3'
|
|
services:
|
|
pigallery2:
|
|
image: bpatrik/pigallery2:latest
|
|
container_name: pigallery2
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- "./pigallery2/config:/app/data/config" # CHANGE ME
|
|
- "db-data:/app/data/db"
|
|
- "./pigallery2/images:/app/data/images:ro" # CHANGE ME, ':ro' mean read-only
|
|
- "./pigallery2/tmp:/app/data/tmp" # CHANGE ME
|
|
ports:
|
|
- 80:80
|
|
restart: always
|
|
|
|
volumes:
|
|
db-data:
|