- Create a folder for your sentry service
- Create a
docker-compose.yml
-file inside and use the file below as template
Then execute in your shell:
$ docker-compose build
$ docker-compose run --rm web config generate-secret-key
# insert the given key in you `docker-compose.yml` in line 23
$ docker-compose run --rm web upgrade
Create in the last step an admin user with a password (choose an email as username) and you're done.
Finally start your sentry service with:
$ docker-compose up -d
and sentry should be available on http://localhost:9000.
For further details and more detailed step-by-step-guide have a look at https://github.com/getsentry/onpremise.