We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84994fb commit 52ef103Copy full SHA for 52ef103
Dockerfile
@@ -128,7 +128,10 @@ COPY ./docker/aeternity.yaml /home/aeternity/aeternity.yaml
128
COPY ./docker/healthcheck.sh /home/aeternity/healthcheck.sh
129
RUN chmod +x /home/aeternity/healthcheck.sh
130
131
-RUN mkdir -p ./local/rel/aeternity/data/mnesia
+# Create data directories in advance so that volumes can be mounted in there
132
+# see https://github.com/moby/moby/issues/2259 for more about this nasty hack
133
+RUN mkdir -p ./local/rel/aeternity/data/mnesia \
134
+ && mkdir -p ./local/rel/aeternity/data/mdw.db
135
136
RUN chown -R nobody /home/aeternity/node
137
0 commit comments