13 lines
226 B
YAML
13 lines
226 B
YAML
services:
|
|
api:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
environment:
|
|
- PORT=5000
|
|
- CONFIG_FILE=/app/config.yml
|
|
ports:
|
|
- "5003:5000"
|
|
volumes:
|
|
- ./config.yml:/app/config.yml
|