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 9704f80 commit fa618d2Copy full SHA for fa618d2
docker-compose.yaml
@@ -61,6 +61,8 @@ services:
61
image: nginx:alpine
62
ports:
63
- 8089:80
64
+ volumes:
65
+ - ./nginx/default.conf:/etc/nginx/conf.d/default.conf
66
depends_on:
67
- api
68
- frontend
nginx/Dockerfile
@@ -1,5 +1,5 @@
1
FROM ghcr.io/perfetti/react1-app:latest as react-app
2
3
FROM nginx:alpine
4
-COPY --from=react-app /usr/share/nginx/html /react-app
5
COPY default.conf /etc/nginx/conf.d/default.conf
+
0 commit comments