# sentry **Repository Path**: srzyhead/sentry ## Basic Information - **Project Name**: sentry - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-05-29 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Sentry # Install 1. `cp -n .env.example .env` - create env config file 2. `docker-compose run --rm sentry config generate-secret-key` - Generate a secret key. Add it to `.env` as `SENTRY_SECRET_KEY`. 3. `docker-compose run --rm sentry upgrade` - Build the database. Use the interactive prompts to create a user account. 4. add user ```bash docker exec -it sentry /bin/bash /entrypoint.sh createuser ``` 5. `docker-compose up -d` - Lift all services (detached/background mode). 6. Access your instance at `localhost:9000`! ## Updating Sentry Updating Sentry using Compose is relatively simple. Just use the following steps to update. Make sure that you have the latest version set in your Dockerfile. Or use the latest version of this repository. Use the following steps after updating this repository or your Dockerfile: ```sh docker-compose build --pull # Build the services again after updating, and make sure we're up to date on patch version docker-compose run --rm web upgrade # Run new migrations docker-compose up -d # Recreate the services ```