18 lines
506 B
YAML
18 lines
506 B
YAML
services:
|
|
pickup-config-app:
|
|
build: .
|
|
ports:
|
|
- "3005:3000"
|
|
env_file:
|
|
- .env # Lädt Umgebungsvariablen aus der .env-Datei
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /opt/docker/foodsharing/config:/app/config # Für persistente Konfiguration
|
|
networks:
|
|
- nginx-proxy-manager_default
|
|
labels:
|
|
- com.centurylinklabs.watchtower.enable=false
|
|
networks:
|
|
nginx-proxy-manager_default:
|
|
external: true # Verbindung zu einem bestehenden Netzwerk (optional)
|