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 5ce116c commit 9bda370Copy full SHA for 9bda370
docker-compose.yml
@@ -0,0 +1,30 @@
1
+version: '3.8'
2
+
3
+services:
4
+ backend:
5
+ build:
6
+ context: ./api
7
+ dockerfile: Dockerfile
8
+ image: rtc-api:1.0
9
+ ports:
10
+ - "8000:8000"
11
+ volumes:
12
+ - ./api:/usr/src/app
13
+ networks:
14
+ - my-network
15
16
+ frontend:
17
18
+ context: ./client
19
20
+ image: rtc-client:1.1
21
22
+ - "5173:80"
23
24
+ - ./client:/usr/src/app
25
26
27
28
+networks:
29
+ my-network:
30
+ driver: bridge
0 commit comments