Skip to content

Commit

Permalink
fix(hadolint): should ignore DL3008 instead of DL3009
Browse files Browse the repository at this point in the history
  • Loading branch information
hongbo-miao committed May 3, 2022
1 parent 817be13 commit d11a47b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .hadolint.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://github.com/hadolint/hadolint#rules

ignored:
- DL3009
- DL3008
- DL3018
- DL3033
8 changes: 7 additions & 1 deletion keydb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,16 @@ keydb-docker-build:
docker build --file=keydb/Dockerfile --tag=ghcr.io/hongbo-miao/hm-keydb:latest .
keydb-docker-push:
docker push ghcr.io/hongbo-miao/hm-keydb:latest
keydb-docker-run:
keydb-docker-run-multi-master:
docker run \
--detach \
--name=hm-keydb \
--publish=6379:6379 \
ghcr.io/hongbo-miao/hm-keydb:latest \
keydb-server /etc/keydb/keydb.conf --multi-master yes --active-replica yes --replicaof 192.168.2.58 6379 --requirepass passw0rd --masterauth passw0rd
docker run \
--detach \
--name=hm-keydb \
--publish=6379:6379 \
ghcr.io/hongbo-miao/hm-keydb:latest \
keydb-server /etc/keydb/keydb.conf --multi-master yes --active-replica yes --replicaof 192.168.2.117 6379 --requirepass passw0rd --masterauth passw0rd

0 comments on commit d11a47b

Please sign in to comment.