mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-01 16:08:32 +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:
|
||||
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
|
||||
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: ''
|
||||
# GOTIFY_CLIENT_TOKENS: ''
|
||||
# SECNTFY_TOKENS: ''
|
||||
|
||||
networks:
|
||||
net:
|
||||
|
||||
volumes:
|
||||
data:
|
||||
api-data:
|
Reference in New Issue
Block a user