Files
beelzebub/docker-compose.yml

19 lines
461 B
YAML
Raw Normal View History

2022-05-08 20:49:53 +02:00
version: "3.9"
services:
beelzebub:
build: .
2022-05-21 11:42:43 +02:00
#network_mode: host # Not work on Mac OS
2022-05-08 20:49:53 +02:00
container_name: beelzebub
2022-06-01 23:52:01 +02:00
restart: always
2022-06-04 17:34:03 +02:00
ports: # Remove me, if you use configuration network_mode: host
2022-05-08 20:49:53 +02:00
- "22:22"
- "2222:2222"
2022-05-08 20:49:53 +02:00
- "8080:8080"
2022-06-01 23:52:01 +02:00
- "80:80"
2022-07-03 17:15:38 +02:00
- "3306:3306"
- "2112:2112" # Prometheus openmetrics
2022-06-01 23:52:01 +02:00
environment:
2022-06-02 12:33:02 +02:00
RABBITMQ_URI: ${RABBITMQ_URI}
2022-06-02 12:17:18 +02:00
volumes:
- "./configurations:/configurations"