mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:50 +02:00
14 lines
274 B
YAML
14 lines
274 B
YAML
version: "3.8"
|
|
services:
|
|
gotify:
|
|
image: gotify/server
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- GOTIFY_DEFAULTUSER_NAME=admin
|
|
- GOTIFY_DEFAULTUSER_PASS=secret
|
|
- TZ=Asia/Shanghai
|
|
restart: unless-stopped
|