This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/docker-compose.core.yml
Didier 73998fffb0
All checks were successful
update neo with compose files / update (push) Successful in 5s
removed trash
2023-04-29 21:45:59 +02:00

32 lines
675 B
YAML

version: '2.2'
services:
ntfy:
build: custom/ntfy
container_name: ntfy
command:
- serve
environment:
VIRTUAL_HOST: push.ixvd.net
LETSENCRYPT_HOST: push.ixvd.net
volumes:
- /srv/ntfy/data:/var/cache/ntfy
networks:
- proxy
- internal
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