blob: ae8060f0e66f5fdf3f8f5322d08c23e44c1e81eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
services:
gotify:
image: gotify/server:2.6.3
restart: unless-stopped
ports:
- 10.0.0.1:8082:80
environment:
- GOTIFY_DEFAULTUSER_NAME=admin
- GOTIFY_DEFAULTUSER_PASS=gotify
- TZ="Europe/Paris"
- GOTIFY_REGISTRATION=false
volumes:
- ./gotify_data:/app/data
networks: {}
|