forked from Grokzen/docker-redis-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
53 lines (42 loc) · 1.57 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
CID_FILE = /tmp/grokzen-redis-cluster.cid
CID =`cat $(CID_FILE)`
IMAGE_NAME = grokzen/redis-cluster
PORTS = -p 7000:7000 -p 7001:7001 -p 7002:7002 -p 7003:7003 -p 7004:7004 -p 7005:7005 -p 7006:7006 -p 7007:7007
help:
@echo "Please use 'make <target>' where <target> is one of"
@echo " build build the docker image containing a redis cluster"
@echo " rebuild rebuilds the image from scratch without using any cached layers"
@echo " run run the built docker image"
@echo " bash starts bash inside a running container."
@echo " clean removes the tmp cid file on disk"
@echo " cli run redis-cli inside the container on the server with port 7000"
@echo " ---------"
@echo "Docker compose commands"
@echo " compose-build builds docker-compose containers"
@echo " compose-up starts docker-compose containers"
@echo " compose-stop stops the running docker-compose containers"
build:
@echo "Building docker image..."
docker build -t ${IMAGE_NAME} .
rebuild:
@echo "Rebuilding docker image..."
docker build --no-cache=true -t ${IMAGE_NAME} .
run:
@echo "Running docker image..."
docker run -d $(PORTS) --cidfile $(CID_FILE) -i -t ${IMAGE_NAME}
bash:
docker exec -it $(CID) /bin/bash
stop:
docker stop $(CID)
-make clean
clean:
# Cleanup cidfile on disk
-rm $(CID_FILE)
cli:
docker exec -it $(CID) /redis/src/redis-cli -p 7000
compose-build:
docker-compose -f docker-compose.yml build
compose-up:
docker-compose -f docker-compose.yml up
compose-stop:
docker-compose -f docker-compose.yml stop