Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)