diff --git a/compose.yaml b/compose.yaml index 86be3bd..e5c2552 100644 --- a/compose.yaml +++ b/compose.yaml @@ -6,3 +6,12 @@ services: restart: "no" volumes: - .:/usr/src/app/ + + nginx: + restart: always + image: nginx:alpine + ports: + - 8900:80 + volumes: + - ./nginx.conf:/etc/nginx/nginx.conf + - ./public:/var/www/html