Last active
February 26, 2020 08:57
-
-
Save kamiazya/7b614a361edca291c00621941079481d to your computer and use it in GitHub Desktop.
redisとWebUIの最小構成のdocker-compose.yml
This file contains 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
version: "3" | |
services: | |
# redis | |
redis: | |
image: redis:3.2.11-alpine | |
# redis用のWebUI | |
# 3000番ポートを開放 | |
commander: | |
image: tenstartups/redis-commander | |
command: --redis-host redis | |
links: | |
- redis | |
ports: | |
- 3000:8081 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment