📕 yarn is a Self-Hosted, Twitter™-like Decentralised micro-Blogging platform. No ads, no tracking, your content, your data!
https://yarn.social/
You can not 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
19 lines
370 B
---
|
|
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 |