Files
containers/old/npm/docker-compose.yml
2025-09-21 21:56:39 +02:00

27 lines
596 B
YAML

version: "3"
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
ports:
- '80:80'
- '443:443'
- '81:81'
# Add any other Stream poOrt you want to expose
- '2222:2222' # gitea SSH
environment:
X_FRAME_OPTIONS: "sameorigin"
DB_SQLITE_FILE: "/data/database.sqlite"
DISABLE_IPV6: 'true'
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
healthcheck:
test: ["CMD", "/bin/check-health"]
interval: 10s
timeout: 3s
networks:
default:
external:
name: npm