16 lines
471 B
YAML
16 lines
471 B
YAML
services:
|
|
photography:
|
|
image: ghcr.io/kroonk/photography:latest
|
|
container_name: photography-website
|
|
ports:
|
|
- "8090:80"
|
|
volumes:
|
|
# Nextcloud-Ordner mit Originalbildern (read-only)
|
|
- /volume1/nextcloud/data/Tom/files/Websitebilder:/usr/share/nginx/html/images/fulls:ro
|
|
# Thumbnails werden automatisch generiert und hier gespeichert
|
|
- thumbs:/usr/share/nginx/html/images/thumbs
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
thumbs:
|