Skip to content

Instantly share code, notes, and snippets.

@kamiazya
Last active February 26, 2020 08:57
Show Gist options
  • Save kamiazya/7b614a361edca291c00621941079481d to your computer and use it in GitHub Desktop.
Save kamiazya/7b614a361edca291c00621941079481d to your computer and use it in GitHub Desktop.
redisとWebUIの最小構成のdocker-compose.yml
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