Skip to content

Commit 4b32b52

Browse files
committed
wip
1 parent 9092c27 commit 4b32b52

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

Diff for: .docker/docker-compose.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,21 @@ services:
1313
networks:
1414
- spring-mysql
1515
backend:
16-
build: backend
17-
target: development
16+
build:
17+
context: backend
18+
target: development
1819
environment:
1920
MYSQL_HOST: db
2021
networks:
2122
- react-spring
2223
- spring-mysql
2324
depends_on:
2425
- db
26+
restart: on-failure:5
2527
frontend:
2628
build:
2729
context: frontend
2830
target: development
29-
entrypoint: ""
3031
ports:
3132
- 3000:3000
3233
networks:

Diff for: docker-compose.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,13 @@ services:
2323
- spring-mysql
2424
depends_on:
2525
- db
26+
restart: on-failure:5
2627
frontend:
2728
build:
2829
context: frontend
2930
target: development
3031
ports:
3132
- 3000:3000
32-
volumes:
33-
- ./frontend/src:/code/src
34-
- ./frontend/public:/code/public
35-
- /project/node_modules
3633
networks:
3734
- react-spring
3835
depends_on:

0 commit comments

Comments
 (0)