15 lines
343 B
YAML
15 lines
343 B
YAML
services:
|
|
gotify:
|
|
image: gotify/server:latest
|
|
container_name: gotify
|
|
restart: ${RESTART}
|
|
ports:
|
|
- "${APP_PORT}:80"
|
|
environment:
|
|
- GOTIFY_DEFAULTUSER_NAME=${GOTIFY_DEFAULTUSER_NAME}
|
|
- GOTIFY_DEFAULTUSER_PASS=${GOTIFY_DEFAULTUSER_PASS}
|
|
volumes:
|
|
- ./gotify_data:/app/data
|
|
|
|
volumes:
|
|
gotify_data: |