41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
services:
|
|
arcane:
|
|
image: ghcr.io/ofkm/arcane:latest
|
|
container_name: arcane
|
|
ports:
|
|
- '3552:3552'
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /home/miker/docker/arcane/data:/app/data
|
|
- /home/miker/docker/arcane/projects:/app/data/projects
|
|
environment:
|
|
- APP_URL=http://192.168.2.21:3552
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- ENCRYPTION_KEY=OjYxMUkyZVdqYjd1QWVZbw==FUwh8qzl
|
|
- JWT_SECRET=FIw1uz3TbDH7U9y
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3552"]
|
|
interval: 10s
|
|
retries: 3
|
|
timeout: 10s
|
|
start_period: 30s
|
|
# Default creds: arcane / arcane-admin
|
|
|
|
# arcane agent Install
|
|
services:
|
|
arcane-agent:
|
|
image: ghcr.io/getarcaneapp/arcane-headless:latest
|
|
container_name: arcane-agent
|
|
ports:
|
|
- '3553:3553'
|
|
environment:
|
|
- AGENT_MODE=true
|
|
# Use a strong, temporary bootstrap token for pairing:
|
|
- AGENT_BOOTSTRAP_TOKEN=FIw1uz3TbDH7U9y
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|