2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00
vinyldns/docker/docker-compose.yml
Paul Cleary 25acdb13c7
Burn dynamo burn (#1025)
Fixes #971 

Changes in this pull request:
- Remove the module
- Update `build.sbt`
- Update docs
- Update docker things
- Update configs everywhere
2020-10-23 17:26:52 -04:00

42 lines
807 B
YAML

version: "3.0"
services:
mysql:
image: mysql:5.7<skipPull>
env_file:
.env
ports:
- "19002:3306"
bind9:
image: vinyldns/bind9:0.0.4<skipPull>
env_file:
.env
ports:
- "19001:53/udp"
- "19001:53"
volumes:
- ./bind9/etc:/var/cache/bind/config
- ./bind9/zones:/var/cache/bind/zones
localstack:
image: localstack/localstack:0.10.4<skipPull>
ports:
- "19006:19006"
- "19007:19007"
- "19009:19009"
environment:
- SERVICES=sns:19006,sqs:19007,route53:19009
- START_WEB=0
mail:
image: flaviovs/mock-smtp:0.0.2<skipPull>
ports:
- "19025:25"
volumes:
- ./email:/var/lib/mock-smtp
ldap:
image: rroemhild/test-openldap:latest<skipPull>
ports:
- "19008:389"