13 lines
222 B
YAML
13 lines
222 B
YAML
version: "2"
|
|
services:
|
|
gotify:
|
|
container_name: gotify
|
|
image: gotify/server
|
|
ports:
|
|
- "8001:80"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
restart: unless-stopped
|