Commit 44f00784 authored by Heber Cordova's avatar Heber Cordova

feat: added docker compose and nginx config files

parent 1491596b
version: '3.6'
services:
web:
image: nginx:latest
container_name: flight-booking-app
ports:
- "8081:80"
volumes:
- ./dist/flight-agency-app:/usr/share/nginx/html
- ./nginx.conf:/etc/nginx/conf.d/default.conf
networks:
- my-angular-network
networks:
my-angular-network:
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html =404;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment