mirror of
https://github.com/abhilesh/self-hosted-docker-setups.git
synced 2026-06-29 15:26:11 +00:00
15 lines
505 B
YAML
15 lines
505 B
YAML
version: "3"
|
|
|
|
services:
|
|
gotify:
|
|
image: gotify/server-arm64
|
|
container_name: gotify_server
|
|
ports:
|
|
- 80:80 # Change this
|
|
environment:
|
|
- TZ=America/Chicago # Change this
|
|
- GOTIFY_DEFAULTUSER_NAME=admin # Change this
|
|
- GOTIFY_DEFAULTUSER_PASS=admin # Change this
|
|
volumes:
|
|
- "/home/pi/gotify/data:/app/data" # Change this
|