mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-02 00:08:33 +02:00
44 lines
978 B
YAML
44 lines
978 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
gotify:
|
|
container_name: gotify
|
|
hostname: gotify
|
|
image: gotify/server
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
networks:
|
|
- net
|
|
ports:
|
|
- "8010:80"
|
|
volumes:
|
|
- data:/app/data
|
|
environment:
|
|
GOTIFY_DEFAULTUSER_PASS: 'l4c1j4yd33Du5lo' # Change me!!!!!
|
|
|
|
igotify:
|
|
container_name: igotify
|
|
hostname: igotify
|
|
image: ghcr.io/androidseb25/igotify-notification-assist:latest
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
pull_policy: always
|
|
networks:
|
|
- net
|
|
ports:
|
|
- "8681:8080"
|
|
volumes:
|
|
- api-data:/app/data
|
|
environment: # option environment see above note
|
|
GOTIFY_URLS: https://gotify.sectorq.eu
|
|
GOTIFY_CLIENT_TOKENS: Cg7rS7zb_9WvgaS
|
|
SECNTFY_TOKENS: NTFY-DEVICE-CIrIeIoagAdUFwI8uOZlo6Qd9b3OF1x1NSpdns6mlImvzb4X0kI
|
|
|
|
networks:
|
|
net:
|
|
|
|
volumes:
|
|
data:
|
|
api-data: |