mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-21 17:37:15 +00:00
32 lines
768 B
YAML
32 lines
768 B
YAML
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
|