Skip to content

Commit

Permalink
fix: remove duplicated mount option (#12)
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 6, 2021
1 parent 489c57e commit f75c6cb
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 f75c6cb

Please sign in to comment.