Remove comments v2

This commit is contained in:
2025-07-19 20:30:14 +05:30
parent 433fc0b2a7
commit 948b0575b9
7 changed files with 114 additions and 250 deletions

View File

@@ -1,20 +1,12 @@
# Gotify Push Notification Server Configuration
services:
gotify:
# Basic container configuration
container_name: gotify
image: ghcr.io/gotify/server:2.6.3
restart: unless-stopped
# Application environment configuration
environment:
- TZ=${TZ} # Timezone configuration
- GOTIFY_REGISTRATION=${GOTIFY_REGISTRATION} # Allow/disallow new user registration
# Persistent storage configuration
- TZ=${TZ}
- GOTIFY_REGISTRATION=${GOTIFY_REGISTRATION}
volumes:
- ${APPDATA_PATH}/gotify/config:/app/data # Configuration and database storage
# Network port configuration
- ${APPDATA_PATH}/gotify/config:/app/data
ports:
- ${PORT}:80 # Maps host port to Gotify web interface
- ${PORT}:80