-
Notifications
You must be signed in to change notification settings - Fork 757
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker-compose up fails #79
Comments
Encounter the same problem when I started docker container on Mac OS 11.5.2. The error message is
It seems that the However, the source code is mounted into the path pandoc_resume/docker-compose.yml Line 13 in dcdff60
As a result, while the container is started and try to run |
same issue here |
for windows, I had to change the yml file to this to get it to work..
But there is still an error with creating a PDF file...
|
Thanks for reporting -- I'll try to fix this as soon as I have some spare time! |
There is no update regarding this?! |
Apologies for the delay in fixing this, should be done now! |
diff --git a/docker-compose.yml b/docker-compose.yml
index 29af42f..09ae346 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -7,7 +7,7 @@ services:
context: .
dockerfile: ./.docker/resume.dockerfile
container_name: resume-make
- entrypoint: /entrypoint.sh
+ entrypoint: make
image: resume-make
volumes:
- - .:/home/app/resume:z
+ - .:/data
EDIT 3: It was the line endings on Windows. I had to run the below and I was good to go. git config --local core.autocrlf false
git reset HEAD .
git checkout -- .
docker rm -vf (docker ps -aq)
docker image rm resume-make
docker-compose up EDIT 4: It would be helpful for Windows folks or the like to have a * text=auto
*.sh text eol=lf
*.conf text eol=lf |
Expected Behavior
Creates pdf and html files in output directory
Actual Behavior
Steps to reproduce the behavior
docker-compose up
OS information
Ubuntu 20.04.2
The text was updated successfully, but these errors were encountered: