blob: eef5ac6fc1d9e4416f1e7da8486b2f970a62a36c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
services:
gotify:
image: gotify/server:2.7.2
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: {}
...
|