-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.full.yml
More file actions
35 lines (32 loc) · 1019 Bytes
/
docker-compose.full.yml
File metadata and controls
35 lines (32 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Indiekit Docker Compose — Full plugin override
#
# Usage: docker compose -f docker-compose.yml -f docker-compose.full.yml up -d
#
# Overrides the indiekit service to install ALL @rmdes plugins,
# and the caddy service to route their API endpoints.
services:
# Redis is required for full profile (ActivityPub 2.2.0 uses Redis for Fedify KV store)
redis:
profiles: []
indiekit:
# Pre-built full image includes all @rmdes/* plugins
# GHCR alternative: ghcr.io/rmdes/indiekit-deploy-server-full:latest
image: rmdes/indiekit-deploy-server-full:latest
build:
context: .
dockerfile: docker/indiekit/Dockerfile
args:
PROFILE: full
depends_on:
- mongodb
- redis
environment:
- REDIS_URL=redis://redis:6379
caddy:
volumes:
- ./docker/caddy/Caddyfile.full:/etc/caddy/Caddyfile:ro
- site:/data/site:ro
- uploads:/data/uploads:ro
- content:/data/content:ro
- caddy_data:/data/caddy
- caddy_config:/config