boulder/docker-compose.yml

19 lines
428 B
YAML

# see comments in test/run-docker.sh about host networking
boulder:
build: .
dockerfile: Dockerfile
net: host
environment:
MYSQL_CONTAINER: "yes"
mysql:
image: mariadb:10.0
net: host
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
command: mysqld --bind-address=127.0.0.1
rabbitmq:
image: rabbitmq:3
net: host
environment:
RABBITMQ_NODE_IP_ADDRESS: "127.0.0.1"