AzuraCast/docker-compose.dev.yml

29 lines
575 B
YAML
Raw Normal View History

services :
web :
build :
context : .
volumes :
- ./util/local_ssl:/etc/nginx/certs
2020-10-21 12:25:03 +02:00
- ./vendor:/var/azuracast/www/vendor
- .:/var/azuracast/www
extra_hosts:
- "host.docker.internal:host-gateway"
mariadb :
build :
context : ../docker-azuracast-db
ports :
- "127.0.0.1:3306:3306"
redis :
build :
context : ../docker-azuracast-redis
ports :
- "127.0.0.1:6379:6379"
stations :
build :
context : ../docker-azuracast-radio
volumes :
- ./util/local_ssl:/etc/nginx/certs