19 lines
435 B
YAML
19 lines
435 B
YAML
services:
|
|
gotify:
|
|
container_name: gotify
|
|
image: ghcr.io/gotify/server:2.7.3@sha256:2ae0e4e689f183137c8247884382fcb174d5a72253ce1897e7e5267090093fc8
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=${TZ}
|
|
- GOTIFY_REGISTRATION=${GOTIFY_REGISTRATION}
|
|
volumes:
|
|
- ${APPDATA_PATH}/gotify/config:/app/data
|
|
ports:
|
|
- ${PORT}:80
|
|
networks:
|
|
- frontend
|
|
|
|
networks:
|
|
frontend:
|
|
external: true
|