Recursive output.docker directories #224
-
Describe the bug I'm running Emanote via the Docker image and finding that repeated runs lead to nested To Reproduce I'm getting it as follows:
The first time, the results go in After a few updates it can get like this:
Above, each Desktop (please complete the following information): Docker Desktop 4.3.2 (72729) on macOS 12.1 (Monterey), Apple Silicon hardware. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It is a bit of a hack in Docker workflow of emanote-template. This is because the output of first runs are fed as input to the second run, because that output is put inside source directory The solution is to put the output directory outside of source directory. For that you have to mount the parent directory of source directory. I didn't bother doing this in GitHub Pages workflow, because |
Beta Was this translation helpful? Give feedback.
-
Thanks, that did the trick. |
Beta Was this translation helpful? Give feedback.
It is a bit of a hack in Docker workflow of emanote-template. This is because the output of first runs are fed as input to the second run, because that output is put inside source directory
The solution is to put the output directory outside of source directory. For that you have to mount the parent directory of source directory. I didn't bother doing this in GitHub Pages workflow, because
gen
is run only once.