-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-dev.yml
72 lines (66 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
version: "2"
services:
guacamole-client:
build:
context: ./guacamole-client
image: human-apps/guacamole-client
volumes:
- ./guacamole-client/guacamole.dev.properties:/etc/guacamole/guacamole.properties:ro
- ./guacamole-client/noauth-config.dev.xml:/etc/guacamole/noauth-config.xml:ro
ports:
- 8080:8080
network_mode: host
container_name: guacamole-client
guacd:
image: glyptodon/guacd
network_mode: host
container_name: guacd
ubuntu-qemu:
build:
context: ./ubuntu-qemu
image: human-apps/ubuntu-qemu
volumes:
- ./ubuntu-qemu/images:/images
devices:
- /dev/kvm
network_mode: host
container_name: ubuntu-qemu
backend:
build:
context: ./
dockerfile: Dockerfile-dev
image: human-apps/backend:dev
volumes:
- ./:/opt
ports:
- 3000:3000
- 5858:5858
- 8081:8081
network_mode: host
container_name: backend
environment:
- UBUNTU_HOST=localhost
- GUACAMOLE_HOST=localhost
frontend:
build:
context: ./frontend
dockerfile: Dockerfile-dev
image: human-apps/frontend:dev
volumes:
- ./frontend:/opt
ports:
- 49152:49152
- 4200:4200
container_name: frontend
network_mode: host
proxy:
build: ./nginx
ports:
- 80:80
image: human-apps/proxy
volumes:
- ./nginx/nginx.dev.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
- backend
container_name: "proxy"
network_mode: host