mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-02 00:08:33 +02:00
lala
This commit is contained in:
22
gotify/docker-compose copy.yml
Normal file
22
gotify/docker-compose copy.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
name: gotify
|
||||||
|
services:
|
||||||
|
server:
|
||||||
|
ports:
|
||||||
|
- 8010:80
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
- GOTIFY_DEFAULTUSER_PASS='admin'
|
||||||
|
volumes:
|
||||||
|
- /share/docker_data/gotify/data:/app/data
|
||||||
|
image: gotify/server
|
||||||
|
labels:
|
||||||
|
- com.centurylinklabs.watchtower.enable=true
|
||||||
|
- homepage.group=Utilities
|
||||||
|
- homepage.name=Gotify
|
||||||
|
- homepage.weight=1
|
||||||
|
- homepage.icon=gotify.png
|
||||||
|
- homepage.href=https://gotify.sectorq.eu
|
||||||
|
- homepage.description=Notification Server
|
||||||
|
- homepage.widget.type=gotify
|
||||||
|
- homepage.widget.url=https://gotify.sectorq.eu
|
||||||
|
- homepage.widget.key=C3Fy8AQym_sc1zS
|
@ -1,22 +1,44 @@
|
|||||||
name: gotify
|
version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
server:
|
gotify:
|
||||||
ports:
|
container_name: gotify
|
||||||
- 8010:80
|
hostname: gotify
|
||||||
environment:
|
image: gotify/server
|
||||||
- TZ=Europe/Berlin
|
restart: unless-stopped
|
||||||
- GOTIFY_DEFAULTUSER_PASS='admin'
|
security_opt:
|
||||||
volumes:
|
- no-new-privileges:true
|
||||||
- /share/docker_data/gotify/data:/app/data
|
networks:
|
||||||
image: gotify/server
|
- net
|
||||||
labels:
|
ports:
|
||||||
- com.centurylinklabs.watchtower.enable=true
|
- "8010:80"
|
||||||
- homepage.group=Utilities
|
volumes:
|
||||||
- homepage.name=Gotify
|
- data:/app/data
|
||||||
- homepage.weight=1
|
environment:
|
||||||
- homepage.icon=gotify.png
|
GOTIFY_DEFAULTUSER_PASS: 'l4c1j4yd33Du5lo' # Change me!!!!!
|
||||||
- homepage.href=https://gotify.sectorq.eu
|
|
||||||
- homepage.description=Notification Server
|
igotify:
|
||||||
- homepage.widget.type=gotify
|
container_name: igotify
|
||||||
- homepage.widget.url=https://gotify.sectorq.eu
|
hostname: igotify
|
||||||
- homepage.widget.key=C3Fy8AQym_sc1zS
|
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: ''
|
||||||
|
# GOTIFY_CLIENT_TOKENS: ''
|
||||||
|
# SECNTFY_TOKENS: ''
|
||||||
|
|
||||||
|
networks:
|
||||||
|
net:
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
data:
|
||||||
|
api-data:
|
Reference in New Issue
Block a user