-
-
Notifications
You must be signed in to change notification settings - Fork 0
raspberry pi
github-actions[bot] edited this page Jan 3, 2026
·
1 revision
Deploy Eclosion on Raspberry Pi 3, 4, or 5 (arm64 images available).
# Install Docker
curl -fsSL https://get.docker.com | sh
sudo usermod -aG docker $USER
newgrp docker
# Create deployment
mkdir ~/eclosion && cd ~/eclosion
cat > docker-compose.yml << 'EOF'
services:
eclosion:
image: ghcr.io/graysoncadams/eclosion:1.0.0
container_name: eclosion
restart: unless-stopped
ports:
- "5001:5001"
volumes:
- ./data:/app/state
environment:
INSTANCE_SECRET: "${INSTANCE_SECRET}"
TZ: "America/New_York"
EOF
# Generate secret
export INSTANCE_SECRET=$(openssl rand -hex 16)
echo "INSTANCE_SECRET=$INSTANCE_SECRET" > .env
echo "Access code: $INSTANCE_SECRET"
# Start
docker compose up -d- Pi 3: May experience slower sync times
- Pi 4/5: Recommended for best performance
- Use an SSD for faster data access
Documentation | Try Demo | Report Issue | Discussions
Eclosion is not affiliated with, endorsed by, or sponsored by Monarch Money.