WIP: Create apub_inbox crate #8

Draft
steffo wants to merge 40 commits from feature/apub-inbox into main
Showing only changes of commit f0f36f1e3f - Show all commits

View file

@ -87,3 +87,22 @@ services:
condition: "service_healthy" condition: "service_healthy"
migrate: migrate:
condition: "service_completed_successfully" condition: "service_completed_successfully"
# ActivityPub inbox server
apub_inbox:
build:
dockerfile: "./Dockerfile"
additional_contexts:
- "source=.."
target: "apub_inbox"
restart: "unless-stopped"
environment:
ACRATE_APUB_INBOX_BIND_ADDRESS: "0.0.0.0:80"
ACRATE_DATABASE_URL: *database_url
expose:
- 80
depends_on:
database:
condition: "service_healthy"
migrate:
condition: "service_completed_successfully"