Skip to content

Instantly share code, notes, and snippets.

View tshafer's full-sized avatar
🏠
Working from home

Tom Shafer tshafer

🏠
Working from home
View GitHub Profile
@tshafer
tshafer / Run docker container with Sentry
Created July 12, 2017 16:08 — forked from mnvx/Run docker container with Sentry
Simple script for runniing docker container with Sentry inside VirtualBox according with instruction https://hub.docker.com/_/sentry/
#!/bin/bash
echo
echo '-- STOP --'
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
echo
echo '-- START --'