1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/gotify/docker-compose.yml
2021-09-27 15:11:34 +08:00

13 lines
249 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
restart: unless-stopped