Files
archived-docker-compose/gotify/docker-compose.yml
T

14 lines
311 B
YAML
Raw Normal View History

2025-06-05 13:56:57 +05:30
version: "3.8"
services:
gotify:
2025-06-08 13:50:37 +05:30
image: "gotify/server:2.6.3"
2025-06-05 13:56:57 +05:30
container_name: "gotify"
environment:
- "TZ=${TZ}"
- "GOTIFY_REGISTRATION=${GOTIFY_REGISTRATION}"
volumes:
2025-06-08 14:19:10 +05:30
- "${APPDATA_PATH}/gotify/config:/app/data"
2025-06-05 13:56:57 +05:30
ports:
- "${PORT}:80"
restart: "unless-stopped"