You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The https://github.com/SvenDowideit/dockerfiles/blob/master/samba/setup.sh entrypoint script expects to find "Init Path" in the docker info output, but that no longer appear to be output.
I'm working around it by modifying the script in my own Dockerfile based on svendowideit/samba.
FROM svendowideit/samba
# Install docker client
ENV DOCKER_VERSION 1.11.0
RUN curl -sSLf https://get.docker.com/builds/Linux/x86_64/docker-${DOCKER_VERSION}.tgz | tar -xzvf - 'docker' && chmod +x docker/* && mv docker/* /bin
RUN rmdir /docker && mv /bin/docker /
RUN sed --in-place 's/Init Path/Root Dir/g' /setup.sh
Here's the output of docker -D info on my Docker for Mac beta7.
The https://github.com/SvenDowideit/dockerfiles/blob/master/samba/setup.sh entrypoint script expects to find "Init Path" in the docker info output, but that no longer appear to be output.
I'm working around it by modifying the script in my own Dockerfile based on svendowideit/samba.
Here's the output of
docker -D info
on my Docker for Mac beta7.The text was updated successfully, but these errors were encountered: