20 lines
758 B
YAML
20 lines
758 B
YAML
services:
|
|
pigallery2:
|
|
image: bpatrik/pigallery2:latest
|
|
container_name: pigallery2
|
|
environment:
|
|
- NODE_ENV=production # set to 'debug' for full debug logging
|
|
# - NODE_OPTIONS=--enable-source-maps # enable source map support on the backend for development
|
|
volumes:
|
|
- "/srv/docker/pigallery2/config:/app/data/config"
|
|
- "/srv/docker/pigallery2/db-data:/app/data/db"
|
|
- "/mnt/smb_share_pics:/app/data/images:ro" # ':ro' means read-only
|
|
- "/srv/docker/pigallery2/tmp:/app/data/tmp"
|
|
ports:
|
|
- 5007:80
|
|
restart: unless-stopped
|
|
labels:
|
|
- flame.type=application # "app" works too
|
|
- flame.name=PI-Gallery2
|
|
- flame.url=http://pigallery2.gabesville.internal
|
|
- flame.icon=camera |