Files
web/docker-compose.yml
2026-04-16 01:35:34 +05:00

30 lines
534 B
YAML

services:
nextjs:
build:
context: .
dockerfile: Dockerfile
container_name: eclassify_nextjs
restart: always
environment:
- NODE_ENV=production
networks:
- devit_network
nginx:
image: nginx:alpine
container_name: eclassify_nginx
restart: always
ports:
- "48680:80"
- "48643:443"
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- nextjs
networks:
- devit_network
networks:
devit_network:
driver: bridge