Last active
November 13, 2023 21:20
-
-
Save thureos/af6a80ffcd19d65618edc627a0f0fc7f to your computer and use it in GitHub Desktop.
Quick maria - redis docker containers
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
docker run --restart always -p 3306:3306 --name maria -e MYSQL_ROOT_PASSWORD=example -d mariadb:10.3 | |
docker run --restart always -p 6379:6379 --name redis -d redis | |
docker run --restart always -p 27017:27017 --name mongo -e MONGO_INITDB_ROOT_USERNAME=root -e MONGO_INITDB_ROOT_PASSWORD=example -d mongo:4.0.27 | |
docker run -p 3306:3306 --name mysql-8.0.35 -e MYSQL_ROOT_PASSWORD=example -d mysql mysqld --default-authentication-plugin=mysql_native_password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment