feat: gatus, ntfy and refactor
This commit is contained in:
parent
6be48129f6
commit
a57288f872
6 changed files with 107 additions and 26 deletions
35
docker-compose.core.yml
Normal file
35
docker-compose.core.yml
Normal file
|
@ -0,0 +1,35 @@
|
|||
version: '2.2'
|
||||
|
||||
services:
|
||||
gatus:
|
||||
build: custom/gatus
|
||||
environment:
|
||||
VIRTUAL_HOST: s.ixvd.net
|
||||
VIRTUAL_PORT: 8080
|
||||
LETSENCRYPT_HOST: s.ixvd.net
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
ntfy:
|
||||
image: binwiederhier/ntfy
|
||||
environment:
|
||||
VIRTUAL_HOST: ntfy.neo.ixvd.net
|
||||
LETSENCRYPT_HOST: ntfy.neo.ixvd.net
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
rabbitmq:
|
||||
image: rabbitmq:3-management
|
||||
hostname: rabbitmq
|
||||
environment:
|
||||
- LETSENCRYPT_HOST=mq.neo.ixvd.net
|
||||
- VIRTUAL_HOST=mq.neo.ixvd.net
|
||||
- VIRTUAL_PORT=15672
|
||||
- RABBITMQ_DEFAULT_USER=rmq
|
||||
- RABBITMQ_DEFAULT_PASS=preconfig
|
||||
volumes:
|
||||
- /srv/rabbitmq/data:/var/lib/rabbitmq
|
||||
ports:
|
||||
- 5672:5672
|
||||
networks:
|
||||
- proxy
|
Reference in a new issue