-
-
Notifications
You must be signed in to change notification settings - Fork 563
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
43 lines (42 loc) · 775 Bytes
/
docker-compose-dev.yml
File metadata and controls
43 lines (42 loc) · 775 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: "3"
volumes:
db_data:
recording_data:
driver: local
networks:
new:
driver: bridge
services:
guacd:
image: guacamole/guacd:0.9.14
networks:
- new
environment:
GUACDHOST: guacd
REDISHOST: redis
WEBTERMINALHOST: webterminal
volumes:
- recording_data:/opt/webterminal/media/
ports:
- "4822:4822"
redis:
image: redis:6.0-alpine
networks:
- new
ports:
- "6379:6379"
webterminal:
build:
dockerfile: Dockerfile
context: .
networks:
- new
environment:
GUACDHOST: guacd
REDISHOST: redis
volumes:
- recording_data:/opt/webterminal/media/
- db_data:/opt/webterminal/db/
ports:
- "80:80"
- "2100:2100"