We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d90b5c commit 7e2bfe0Copy full SHA for 7e2bfe0
course-matrix/docker-compose.yml
@@ -12,12 +12,14 @@ services:
12
- ./backend:/app
13
- /app/node_modules
14
command: ["npm", "run", "dev"]
15
+ networks:
16
+ - course-matrix-net
17
18
frontend:
19
build:
20
context: ./frontend
21
args:
- VITE_SERVER_URL: "http://localhost:8081"
22
+ VITE_SERVER_URL: "http://backend:8081"
23
ports:
24
- "5173:5173"
25
volumes:
@@ -26,3 +28,9 @@ services:
26
28
27
29
depends_on:
30
- backend
31
32
33
+
34
+networks:
35
+ course-matrix-net:
36
+ driver: bridge
0 commit comments