docker
: Add apub_inbox
to the compose.yml file
This commit is contained in:
parent
0ee664f6d0
commit
f0f36f1e3f
1 changed files with 19 additions and 0 deletions
|
@ -87,3 +87,22 @@ services:
|
|||
condition: "service_healthy"
|
||||
migrate:
|
||||
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"
|
||||
|
|
Loading…
Reference in a new issue