Skip to content

Commit

Permalink
fix: remove duplicated mount option
Browse files Browse the repository at this point in the history
Works for docker because docker allows duplicated mount
volumes, but podman doesn't:

- containers/podman#4217
  • Loading branch information
katcipis committed Nov 5, 2021
1 parent 489c57e commit 01947e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -9,7 +9,7 @@ DOCKER_RUN_FLAGS += --rm
DOCKER_RUN_FLAGS += -v ${PWD}:/src

DOCKER_TOOLS_REPO = mineiros/golang-tools
DOCKER_TOOLS_FLAGS += -v $(PWD):/src $(DOCKER_TOOLS_REPO)
DOCKER_TOOLS_FLAGS += $(DOCKER_TOOLS_REPO)

DOCKER_FLAGS += ${DOCKER_RUN_FLAGS}
DOCKER_RUN_CMD = docker run ${DOCKER_FLAGS}
Expand Down

0 comments on commit 01947e8

Please sign in to comment.