14 lines
235 B
YAML
14 lines
235 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
proxy:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3000:3000"
|
|
restart: unless-stopped
|
|
environment:
|
|
HTTP_PROXY: http://localhost:3080
|
|
NODE_ENV: production
|