-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
45 lines (41 loc) · 819 Bytes
/
docker-compose.yaml
File metadata and controls
45 lines (41 loc) · 819 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
44
45
services:
front-end:
build: 'ui/'
container_name: 'front-end'
ports:
- "3000:80"
restart: always
back-end:
build: '.'
container_name: 'back-end'
ports:
- "5000:5000"
restart: always
networks:
- back-db
- selenium-back
database:
image: 'bitnami/memcached:1.6.33'
container_name: 'database'
ports:
- "11211:11211"
restart: always
networks:
- back-db
selenium:
image: 'selenium/standalone-edge:131.0'
container_name: 'selenium'
ports:
- "4444:4444"
environment:
- SE_ENABLE_TRACING=false
- SE_NODE_SESSION_TIMEOUT=2
- SE_SESSION_REQUEST_TIMEOUT=5
restart: always
networks:
- selenium-back
networks:
back-db:
driver: bridge
selenium-back:
driver: bridge