Skip to content

Instantly share code, notes, and snippets.

@sokil
Last active August 7, 2017 20:01
Show Gist options
  • Save sokil/5915d9d882d97069eab04ddf40cc274c to your computer and use it in GitHub Desktop.
Save sokil/5915d9d882d97069eab04ddf40cc274c to your computer and use it in GitHub Desktop.
Docker images:
# Mysql
docker run --name="MYSQL" --rm -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD="yes" mysql/mysql-server:5.7
# Redis
docker run --name="REDIS" -p=7780:6379 -d redis redis-server
# filter services by name
docker ps -a -f NAME=sentry --format "{{.Names}}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment