-
-
Notifications
You must be signed in to change notification settings - Fork 0
docker
github-actions[bot] edited this page Jan 4, 2026
·
2 revisions
The fastest way to run Eclosion is with Docker.
# 1. Create a directory for your deployment
mkdir eclosion && cd eclosion
# 2. Download the docker-compose file
curl -O https://raw.githubusercontent.com/GraysonCAdams/eclosion/main/docker-compose.yml
# 3. Generate a secret access code
export INSTANCE_SECRET=$(openssl rand -hex 16)
echo "Save this access code: $INSTANCE_SECRET"
# 4. Create .env file
echo "INSTANCE_SECRET=$INSTANCE_SECRET" > .env
# 5. Start the container
docker compose up -d
# 6. Access at http://localhost:5001?secret=YOUR_SECRET# Check container is running
docker compose ps
# Check health status
curl http://localhost:5001/health
# View logs
docker compose logs -fPin to a specific version for stability:
# docker-compose.yml
services:
eclosion:
image: ghcr.io/graysoncadams/eclosion:1.0.0 # Pin to versionAvailable image tags:
-
ghcr.io/graysoncadams/eclosion:1.0.0- Specific version (recommended for production) -
ghcr.io/graysoncadams/eclosion:1.0- Latest patch of minor version
- Set up a Reverse Proxy for HTTPS
- Configure Persistent Storage for backups
- Review Environment Variables for customization
Documentation | Try Demo | Report Issue | Discussions
Eclosion is not affiliated with, endorsed by, or sponsored by Monarch Money.