Last active
August 7, 2017 20:01
-
-
Save sokil/5915d9d882d97069eab04ddf40cc274c to your computer and use it in GitHub Desktop.
Docker images:
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
# 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