mirror of
https://github.com/mariocandela/beelzebub.git
synced 2025-07-01 18:47:26 -04:00
19 lines
461 B
YAML
19 lines
461 B
YAML
version: "3.9"
|
||
|
||
services:
|
||
beelzebub:
|
||
build: .
|
||
#network_mode: host # Not work on Mac OS
|
||
container_name: beelzebub
|
||
restart: always
|
||
ports: # Remove me, if you use configuration network_mode: host
|
||
- "22:22"
|
||
- "2222:2222"
|
||
- "8080:8080"
|
||
- "80:80"
|
||
- "3306:3306"
|
||
- "2112:2112" # Prometheus openmetrics
|
||
environment:
|
||
RABBITMQ_URI: ${RABBITMQ_URI}
|
||
volumes:
|
||
- "./configurations:/configurations" |