15 lines
329 B
YAML
15 lines
329 B
YAML
![]() |
version: "3.7"
|
||
|
services:
|
||
|
gotify:
|
||
|
image: gotify/server:2.1.7
|
||
|
container_name: gotify
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- "${APP_DATA_DIR}/datagit :/app/data"
|
||
|
environment:
|
||
|
- GOTIFY_DEFAULTUSER_PASS=${GOTIFY_DEFAULTUSER_PASS}
|
||
|
ports:
|
||
|
- ${APP_PORT}:80
|
||
|
networks:
|
||
|
- tipi_main_network
|