https://github.com/sokil/dockersentry
A simple docker compose to install and run Sentry
https://github.com/sokil/dockersentry
cyclops docker sentry
Last synced: 5 months ago
JSON representation
A simple docker compose to install and run Sentry
- Host: GitHub
- URL: https://github.com/sokil/dockersentry
- Owner: sokil
- License: mit
- Created: 2017-02-14T07:02:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-17T08:08:33.000Z (almost 9 years ago)
- Last Synced: 2025-04-06T22:23:13.486Z (about 1 year ago)
- Topics: cyclops, docker, sentry
- Language: Shell
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Sentry Dockerizer
Compose sentry as docker containers
## Installation
First install `docker` as described in [Manual](https://docs.docker.com/engine/installation/).
Next install `docker-compose`:
```
pip install docker-compose
```
Then run `install.sh` to start containers and initialise sentry. Pass email and password.
Now sentry may be accessible by address `http://127.0.0.1:9050`
## Sentry
Sentry may be opened by URL: `http://127.0.0.1:9050`
## Cyclops
See more info in https://github.com/sentry-extensions/cyclops
Cyclops instance is accessible by URL: `http://127.0.0.1:9100`
## Usage
Start sentry:
```bash
docker-compose start
```
Stop sentry:
```bash
docker-compose stop
```
Retart sentry:
```bash
docker-compose restart
```
Remove settry:
```bash
docker-compose rm
```