forked from AzuraCast/AzuraCast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
24 lines (24 loc) · 844 Bytes
/
docker-compose.dev.yml
File metadata and controls
24 lines (24 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
services:
web:
image: ghcr.io/azuracast/azuracast:development
build:
context: .
target: development
ports:
- "127.0.0.1:3306:3306" # MariaDB
- "127.0.0.1:6025:6025" # Centrifugo
- "127.0.0.1:6379:6379" # Redis
cap_add:
- SYS_PTRACE
# environment:
# VAR_DUMPER_FORMAT: server
# VAR_DUMPER_SERVER: host.docker.internal:9912
volumes:
# Uncomment these lines if mounting a custom SSL cert (i.e. mkcert)
# - $PWD/util/local_ssl/default.crt:/var/azuracast/storage/acme/custom.crt:ro
# - $PWD/util/local_ssl/default.key:/var/azuracast/storage/acme/custom.key:ro
- $PWD/node_modules:/var/azuracast/www/node_modules
- $PWD/vendor:/var/azuracast/www/vendor
- $PWD:/var/azuracast/www
extra_hosts:
- "host.docker.internal:host-gateway"