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 d4bc1ef commit f0e3f94Copy full SHA for f0e3f94
docker-compose.yaml
@@ -51,14 +51,14 @@ services:
51
context: ./frontend
52
dockerfile: Dockerfile.frontend
53
container_name: tracer-frontend
54
- network_mode: host
+ networks:
55
+ - network
56
env_file:
57
- env.list
58
ports:
59
- "3000:3000"
60
restart: unless-stopped
- volumes:
61
- - .:/app
+
62
63
postgres:
64
image: postgres:latest
frontend/Dockerfile.frontend
@@ -1,6 +1,5 @@
1
-
2
3
FROM node:13.12.0-alpine as build
4
WORKDIR /app
5
COPY . .
6
RUN npm install
0 commit comments