Is README in docker folder correct?
See original GitHub issueHi, I tried to build docker images. I read README in docker folder but build failed.
I found the way but it is a little different from README. my dev env : Ubuntu 18.04, docker 18.03.1-ce
# from conductor project home
$ docker build -t conductor:server -f docker/server/Dockerfile .
$ docker build -t conductor:ui -f docker/ui/Dockerfile .
as of docker-compose
$ cd docker
$ docker-compose build
Did others build docker similarly? How about edit README?
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
What is the recommended way of adding documentation to ...
You can add a readme.md in the root folder (where your docker file is located) and this is meant to be parsed by...
Read more >Dockerfile reference - Docker Documentation
Dockerfile reference. Docker can build images automatically by reading the instructions from a Dockerfile . A Dockerfile is a text document that contains ......
Read more >docker/README.md - Tyrex Public - GitLab Inria
This folder contains Docker recipes to: Build DistMuRA and run it in a local Spark ( distmura_spark.Dockerfile ); Run BigDatalog programs ...
Read more >Do not ignore .dockerignore (it's expensive and potentially ...
dockerignore file is the tool, that can help you to define the Docker build context you really need. Using this file, you can...
Read more >Docker - Snipe-IT Documentation
The ONLY docker image we support is snipe/snipe-it . If you grabbed a docker image from any other repo, you're kinda on your...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
gradlew must be marked as executable.
chmod +x gradlew
.I had this error on Windows 10 recently. GNU/Linux and Mac share permissions scheme but Windows needs to use a virtual FS so it copies files with default permissions.
In my case, this issue occurs due to the use of “core.autocrlf = true” from Git config. You are better off leaving core.autocrlf to false. (Or re-install Git and choose the
"Checkout as-is, commit as-is"
as a option).@hados99 I recommend using
docker-compose build
from thedocker/
folder.