We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d1757 commit ad73442Copy full SHA for ad73442
docker-compose.yaml
@@ -1,20 +1,21 @@
1
version: "3"
2
+
3
services:
- react-app:
4
- restart: always
+ next-app:
5
build:
6
- context: ./
+ context: .
7
dockerfile: Dockerfile
8
- image: amazon-clone
+ image: webxdao-website
9
+ restart: always
10
stdin_open: true
11
ports:
12
- "3000:3000"
13
networks:
- - app
14
+ - app-net
15
volumes:
16
- ./src:/app/src
- - ./app/node_modules
17
+ - /app/node_modules
18
19
- app:
20
+ app-net:
21
driver: bridge
0 commit comments