How to Deploy Quepid Locally
This is for 8.3.0 or later
Standing up Quepid locally when you have Docker is very simple. You only need to grab a Docker Compose template from the Quepid Github repo:
curl https://raw.githubusercontent.com/o19s/quepid/refs/heads/main/deployment/quepid-docker-deploy/docker-compose.yml > docker-compose.yml
Update
docker-compose.yml
to use the version of Quepid (likeo19s/quepid:8.2.0
) that you want to run. See https://hub.docker.com/r/o19s/quepid/tags.Start Quepid:
docker compose up
, append-d
to have it run as a background process.Go to http://localhost and register your user.
Grant your user admin permissions via:
docker compose exec app bundle exec thor user:grant_administrator EMAIL
To stop Quepid run docker compose down
.
Your data is stored in MySQL in the ./volumes/myssql_data
directory between usages.