2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00
vinyldns/docker/docker-compose.yml

32 lines
768 B
YAML
Raw Normal View History

2018-07-27 10:18:29 -04:00
version: "3.0"
services:
mysql:
image: "mysql:5.7"
environment:
- MYSQL_ROOT_PASSWORD=pass # do not use quotes around the environment variables!!!
- MYSQL_ROOT_HOST=% # this is required as mysql is currently locked down to localhost
ports:
- "3306:3306"
dynamodb:
image: "cnadiminti/dynamodb-local:2017-02-16"
ports:
- "19000:8000"
command: "--sharedDb --inMemory"
bind9:
image: "vinyldns/bind9:0.0.1"
ports:
- "19001:53/udp"
- "19001:53"
volumes:
- ./bind9/etc:/var/cache/bind/config
- ./bind9/zones:/var/cache/bind/zones
elasticmq:
image: s12v/elasticmq:0.13.8
ports:
- "9324:9324"
volumes:
- ./elasticmq/custom.conf:/etc/elasticmq/elasticmq.conf