14 lines
No EOL
235 B
YAML
14 lines
No EOL
235 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "${PORT}:${PORT}"
|
|
environment:
|
|
- PORT=${PORT}
|
|
volumes:
|
|
- ./static:/app/static
|
|
restart: unless-stopped |