Merge pull request 'Updated docker-compose file for production use' (#149) from infra/docker-compose-fix into main
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #149
This commit is contained in:
commit
9e16129aa5
3 changed files with 26 additions and 12 deletions
|
@ -1,22 +1,16 @@
|
||||||
version: '3.7'
|
version: '3.7'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
frontend_bt_prod:
|
frontend_bt:
|
||||||
|
image: caminsha/bt-frontend
|
||||||
container_name: frontend_bt_prod
|
container_name: frontend_bt_prod
|
||||||
build:
|
|
||||||
context: ./frontend
|
|
||||||
dockerfile: Dockerfile.prod
|
|
||||||
ports:
|
ports:
|
||||||
- 8877:80
|
- 3000:3000
|
||||||
backend-prod:
|
backend-prod:
|
||||||
|
image: caminsha/bt-backend
|
||||||
container_name: backend_bt
|
container_name: backend_bt
|
||||||
build:
|
|
||||||
context: ./backend
|
|
||||||
dockerfile: Dockerfile.prod
|
|
||||||
ports:
|
ports:
|
||||||
- 5000:5000
|
- 5000:5000
|
||||||
environment:
|
environment:
|
||||||
DEBUG: "no"
|
DEBUG: "no"
|
||||||
PORT: 5000
|
PORT: 5000
|
||||||
HOST: "0.0.0.0"
|
HOST: "0.0.0.0"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
FROM node:latest as builder
|
FROM node:latest as build
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
ENV PATH /app/node_modules/.bin:$PATH
|
ENV PATH /app/node_modules/.bin:$PATH
|
||||||
COPY package.json ./
|
COPY package.json ./
|
||||||
|
@ -7,3 +6,10 @@ COPY package-lock.json ./
|
||||||
RUN npm ci --silent
|
RUN npm ci --silent
|
||||||
COPY . ./
|
COPY . ./
|
||||||
RUN npm run build
|
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
14
frontend/nginx/nginx.conf
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue