automation: rename compose.yaml to docker-compose.yaml, add .env.example

This commit is contained in:
Paccoco
2026-05-05 20:01:19 -05:00
parent 370998b8d5
commit a71096b76b
2 changed files with 1 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
services:
gotify:
image: gotify/server:latest
container_name: gotify
restart: unless-stopped
networks:
- pangolin
volumes:
- /mnt/docker-ssd/docker/appdata/gotify/data:/app/data
environment:
- GOTIFY_DEFAULTUSER_NAME=admin
- GOTIFY_DEFAULTUSER_PASS=${GOTIFY_PASSWORD}
- GOTIFY_DEFAULTUSER_ISADMIN=true
ports:
- 8443:80
networks:
pangolin:
external: true