Updated docker-compose file for production use #149

Merged
cami merged 2 commits from infra/docker-compose-fix into main 2021-07-12 22:39:24 +00:00
3 changed files with 26 additions and 12 deletions

View file

@ -1,22 +1,16 @@
version: '3.7'
services:
frontend_bt_prod:
frontend_bt:
image: caminsha/bt-frontend
container_name: frontend_bt_prod
build:
context: ./frontend
dockerfile: Dockerfile.prod
ports:
- 8877:80
- 3000:3000
backend-prod:
image: caminsha/bt-backend
container_name: backend_bt
build:
context: ./backend
dockerfile: Dockerfile.prod
ports:
- 5000:5000
environment:
DEBUG: "no"
PORT: 5000
HOST: "0.0.0.0"

View file

@ -1,5 +1,4 @@
FROM node:latest as builder
FROM node:latest as build
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json ./
@ -7,3 +6,10 @@ COPY package-lock.json ./
RUN npm ci --silent
COPY . ./
RUN npm run build
FROM nginx:latest
COPY --from=build /app/build /usr/share/nginx/html
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx/nginx.conf /etc/nginx/conf.d
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

14
frontend/nginx/nginx.conf Normal file
View file

@ -0,0 +1,14 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# to redirect all the requests to index.html,
# useful when you are using react-router
try_files $uri /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}