11 lines
337 B
YAML
11 lines
337 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
image: nginx
|
|
restart: always
|
|
volumes:
|
|
- ./dist:/usr/share/nginx/html # Ensure ./web/dist folder exists and contains built frontend files
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
ports:
|
|
- "9809:80" # Expose standard HTTP port, ensure WEB_PORT is defined in .env file |