You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
370 B
YAML
19 lines
370 B
YAML
---
|
|
version: "3.8"
|
|
|
|
services:
|
|
yarnd:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
ports:
|
|
- "8000:8000/tcp"
|
|
volumes:
|
|
- ./data:/src/data
|
|
- ./internal:/src/internal
|
|
healthcheck:
|
|
test: wget -nv -t1 --spider 'http://localhost:8000' || exit 1
|
|
interval: 10s
|
|
retries: 5
|
|
start_period: 10s
|
|
timeout: 10s |