mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-02 00:08:33 +02:00
44 lines
903 B
YAML
44 lines
903 B
YAML
networks:
|
|
net: null
|
|
services:
|
|
gotify:
|
|
container_name: gotify
|
|
env_file:
|
|
- stack.env
|
|
hostname: gotify
|
|
image: ${DOCKER_REGISTRY:-}gotify/server
|
|
labels:
|
|
wud.watch: true
|
|
wud.watch.digest: true
|
|
networks:
|
|
- net
|
|
ports:
|
|
- 8010:80
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
volumes:
|
|
- /share/docker_data/gotify/data:/app/data
|
|
igotify:
|
|
container_name: igotify
|
|
env_file:
|
|
- stack.env
|
|
hostname: igotify
|
|
image: ${DOCKER_REGISTRY:-}ghcr.io/androidseb25/igotify-notification-assist:latest
|
|
labels:
|
|
wud.watch: true
|
|
wud.watch.digest: true
|
|
networks:
|
|
- net
|
|
ports:
|
|
- 8681:8080
|
|
pull_policy: always
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
volumes:
|
|
- /share/docker_data/igotify/data:/app/data
|
|
volumes:
|
|
api-data: null
|
|
data: null
|