Skip to content

Commit

Permalink
Suggest sharper chmod on install guide
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecrs authored Jun 24, 2024
1 parent 85f6fe1 commit 7171ac2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ ARG DOCKER_PATH="/usr/local/bin/docker"
RUN mv -f "${DOCKER_PATH}" "${DOCKER_PATH}.orig"

# Install dond-shim at the same path as the original docker cli
ARG DOND_SHIM_VERSION="0.6.0"
ARG DOND_SHIM_VERSION="0.6.1"
ADD "https://github.com/felipecrs/docker-on-docker-shim/raw/v${DOND_SHIM_VERSION}/dond" "${DOCKER_PATH}"
RUN chmod +x "${DOCKER_PATH}"
RUN chmod 755 "${DOCKER_PATH}"
```

### As `dond`
Expand All @@ -82,8 +82,8 @@ FROM docker:latest
RUN apk add --no-cache bash

# Install dond-shim to /usr/local/bin/dond
ARG DOND_SHIM_VERSION="0.6.0"
ARG DOND_SHIM_VERSION="0.6.1"
ARG DOND_SHIM_PATH="/usr/local/bin/dond"
ADD "https://github.com/felipecrs/docker-on-docker-shim/raw/v${DOND_SHIM_VERSION}/dond" "${DOND_SHIM_PATH}"
RUN chmod +x "${DOND_SHIM_PATH}"
RUN chmod 755 "${DOND_SHIM_PATH}"
```

0 comments on commit 7171ac2

Please sign in to comment.