Last active
October 14, 2020 05:17
-
-
Save ExtraSettings/d7d03b74b96f028fc6e0f9d9ef106c57 to your computer and use it in GitHub Desktop.
Setup sentry on a vm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt install git curl | |
| sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
| sudo chmod +x /usr/local/bin/docker-compose | |
| curl -fsSL https://get.docker.com/ | sh | |
| sudo groupadd docker | |
| sudo usermod -aG docker $USER | |
| git clone https://github.com/getsentry/onpremise.git | |
| cd onpremise | |
| ./install.sh | |
| docker-compose up -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment