-
Notifications
You must be signed in to change notification settings - Fork 20
/
docker-compose.dev.yml
43 lines (42 loc) · 1.15 KB
/
docker-compose.dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## builds an image without the ui part.
## ui can be run by using ng build --watch for development
version: "3.5"
services:
nginx:
image: nginx
container_name: nginx
volumes:
- ./docker/nginx/nginx-nopass.conf:/etc/nginx/nginx.conf
ports:
- "80:80"
- "443:443"
logging:
driver: none
hydraplay:
# use platform linux/amd64 if you are running on apple siclicon ( ! requires rosetta ! )
platform: linux/amd64
privileged: true
#image: mariolukas/hydraplay:latest
build:
context: .
dockerfile: docker/Dockerfile
target: hydraplay
args:
SNAPCASTVERSION: 0.26.0
container_name: hydraplay
environment:
PYTHONUNBUFFERED: 0
ports:
- 8080:8080
- 1780:1780
- 1704:1704
- 1705:1705
- 4070:4070
- 6680-6690:6680-6690
volumes:
# mount src folder for development
- ./src/:/test/
- ./hydra.private.json:/tmp/hydra.config.json
- ./pipes/:/tmp/additional_streams
- ./mp3:/media
entrypoint: ["python3", "-u", "/test/hydraplay.sh", "--config", "/tmp/hydra.config.json", "--loglevel", "debug"]