14 lines
241 B
YAML
14 lines
241 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- .:/app
|
|
working_dir: /app
|
|
command: deno task dev --host 0.0.0.0
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- DATA_DIR=/app/data
|