https://github.com/tianhanfangyan/sentry-docker-compose
Easy to install docker by using docker-compose file
https://github.com/tianhanfangyan/sentry-docker-compose
docker-compose installation sentry
Last synced: 6 months ago
JSON representation
Easy to install docker by using docker-compose file
- Host: GitHub
- URL: https://github.com/tianhanfangyan/sentry-docker-compose
- Owner: tianhanfangyan
- License: mit
- Created: 2019-11-13T09:18:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-14T07:34:45.000Z (almost 6 years ago)
- Last Synced: 2025-03-27T03:11:50.418Z (6 months ago)
- Topics: docker-compose, installation, sentry
- Language: Shell
- Size: 1.95 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sentry-docker-compose
Easy to install docker by using docker-compose file## Getting Started
### Prerequisites
* Unix-like operating system (macOS or Linux)
* Docker and Docker-Compose should be installed
* env/sentry is configured### Basic Installation
#### via bash
```shell
bash deploy.sh
```#### via other
```shell
./deploy.sh
```#### via setup
> First generate a secret_key.> Second make sure the env/sentry variables is configured.
> Finally run the rest services.
##### Generate secret_key
```bash
docker-compose run --rm sentry config generate-secret-key
```
##### Configure the env/sentry
```vim
for example:
SENTRY_SECRET_KEY=%#_*3rfly#yd_51r%e6cx)_v2rsk4q+ghq)-@h=fzfxh!ey=hj
```
##### Configure superuser
```bash
docker-compose run --rm sentry sentry upgrade
```
##### Run the rest services
```bash
docker-compose up -d sentry sentry-cron sentry-worker-1
```