17 lines
385 B
YAML
17 lines
385 B
YAML
version: '3.8'
|
|
services:
|
|
gotify:
|
|
image: gotify/server:latest
|
|
container_name: gotify
|
|
environment:
|
|
- GOTIFY_DEFAULTUSER_PASS=custom
|
|
- TZ=Europe/Berlin
|
|
#- GOTIFY_REGISTRATION=false
|
|
volumes:
|
|
- "./gotify_data:/app/data"
|
|
ports:
|
|
- 8083:8080
|
|
restart: unless-stopped
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=true"
|