12 lines
219 B
YAML
12 lines
219 B
YAML
|
version: "3.8"
|
||
|
services:
|
||
|
nest-app:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
args:
|
||
|
SERVER_PORT: ${SERVER_PORT}
|
||
|
ports:
|
||
|
- "${SERVER_PORT}:${SERVER_PORT}"
|
||
|
env_file:
|
||
|
- .env
|