19 lines
426 B
YAML
19 lines
426 B
YAML
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
|