mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
Documents backing up with restic before upgrading, for both the compose and docker run workflows. Renames the docker run container to nginx-proxy-manager to match the directory, and cleans up minor wording and trailing-slash inconsistencies in the README. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
22 lines
573 B
YAML
22 lines
573 B
YAML
services:
|
|
proxy:
|
|
image: ${PROXY_IMAGE:-jc21/nginx-proxy-manager:latest}
|
|
restart: unless-stopped
|
|
environment:
|
|
X_FRAME_OPTIONS: "sameorigin"
|
|
DB_SQLITE_FILE: "/data/database.sqlite"
|
|
ports:
|
|
- "80:80"
|
|
- "81:81"
|
|
- "443:443"
|
|
volumes:
|
|
- "${VOL_PATH:-/data}/nginx-proxy-manager/data:/data"
|
|
- "${VOL_PATH:-/data}/nginx-proxy-manager/letsencrypt:/etc/letsencrypt"
|
|
- "${LOG_PATH:-/var/log/containers/nginx-proxy-manager}:/data/logs"
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
name: proxy
|
|
driver: bridge |