Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yhirano55/sentry-docker-compose
How to setup a full Sentry instance with docker-compose.yml
https://github.com/yhirano55/sentry-docker-compose
docker docker-compose sentry
Last synced: 18 days ago
JSON representation
How to setup a full Sentry instance with docker-compose.yml
- Host: GitHub
- URL: https://github.com/yhirano55/sentry-docker-compose
- Owner: yhirano55
- Created: 2018-03-18T14:16:38.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-18T14:55:51.000Z (almost 7 years ago)
- Last Synced: 2024-11-30T19:45:55.736Z (24 days ago)
- Topics: docker, docker-compose, sentry
- Homepage:
- Size: 1000 Bytes
- Stars: 38
- Watchers: 1
- Forks: 22
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sentry-docker-compose
* [library/sentry - Docker Hub](https://hub.docker.com/_/sentry/)
## How to setup a full Sentry instance with docker-compose.yml
### Check out this repo
### Copying sample files
```
$ cp .env.sample .env
```### Generate secret key
```
$ docker-compose run --rm sentry config generate-secret-key
```And then set generated key to `SENTRY_SECRET_KEY` in `.env`.
### Initialize database
If this is a new database, you'll need to run `upgrade`.
```
$ docker-compose run --rm sentry upgrade
```And create an initial user, if you need.
### Booting
```
$ docker-compose up -d
```And open `http://localhost:9000`
## License
[MIT License](http://opensource.org/licenses/MIT)