12 lines
258 B
YAML
12 lines
258 B
YAML
services:
|
|
web:
|
|
build: .
|
|
image: dbx-main:latest
|
|
container_name: dbx-main
|
|
restart: unless-stopped
|
|
ports:
|
|
# NPM이 192.168.0.194:8000 으로 프록시 → 컨테이너 8000으로 전달
|
|
- "8000:8000"
|
|
env_file:
|
|
- .env
|