Skip to content

Commit fa3a38b

Browse files
committed
added component test and py_dev containers
1 parent c406b77 commit fa3a38b

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

docker-compose.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,26 @@ services:
1111
- 3001:3000
1212
environment:
1313
- CHOKIDAR_USEPOLLING=true
14+
component_test:
15+
container_name: component_test
16+
build: ./constructor_ui
17+
volumes:
18+
- 'component_test:/app'
19+
- 'node_modules:/app/node_modules'
20+
ports:
21+
- 3002:3002
22+
environment:
23+
- CHOKIDAR_USEPOLLING=true
1424
api:
1525
container_name: api
1626
build: ./api
1727
ports:
1828
- 80:80
19-
29+
py_dev:
30+
container_name: pydev
31+
build: ./dev_env
32+
volumes:
33+
- 'py_dev:/pydev'
2034
database-new:
2135
image: mongo:4.0.5
2236
container_name: database
@@ -32,3 +46,5 @@ volumes:
3246
constructor:
3347
node_modules:
3448
mongo-volume:
49+
component_test:
50+
py_dev:

0 commit comments

Comments
 (0)