We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dc6329 commit ff93addCopy full SHA for ff93add
docker-compose.yml
@@ -1,18 +1,26 @@
1
-version: '3'
2
-
3
services:
4
backend:
5
- build: ./backend
+ build:
+ context: https://github.com/Chase295/minesweeper.git#main:backend
6
container_name: minesweeper-backend
7
ports:
8
- "3001:3001"
9
restart: unless-stopped
+ networks:
10
+ - minesweeper-network
11
12
frontend:
- build: ./frontend
13
14
+ context: https://github.com/Chase295/minesweeper.git#main:frontend
15
container_name: minesweeper-frontend
16
- - "80:80"
17
+ - "8077:80"
18
depends_on:
19
- backend
- restart: unless-stopped
20
+ restart: unless-stopped
21
22
23
+
24
+networks:
25
+ minesweeper-network:
26
+ driver: bridge
0 commit comments