1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/gotify/docker-compose.yml

14 lines
278 B
YAML
Raw Normal View History

2021-09-27 09:11:34 +02:00
version: "3.8"
services:
gotify:
2024-09-24 10:00:14 +02:00
image: gotify/server:2.5
2021-09-27 09:11:34 +02:00
ports:
- "8080:80"
volumes:
- ./data:/app/data
environment:
- GOTIFY_DEFAULTUSER_NAME=admin
- GOTIFY_DEFAULTUSER_PASS=secret
2024-01-05 12:21:43 +02:00
- TZ=Asia/Shanghai
2021-09-27 09:11:34 +02:00
restart: unless-stopped