2020-10-23 00:02:39
Rosetta api expectations is /data for node business
Fireduck
2020-10-23 00:03:15
But easy enough to mkdir -p and chown
Fireduck
2020-10-23 00:40:56
*https://github.com/snowblossomcoin/rosesnow/compare/b2dee42d99f0...aedf708dcdf2*
https://github.com/snowblossomcoin/rosesnow/commit/aedf708dcdf2d571dd7cbc40f510bee5db67c5ac - Make data dir
GitHub
2020-10-23 00:41:17
looks good now
Fireduck
2020-10-23 06:46:21
yep, chown
Rotonen
2020-10-23 06:46:47
that sounds like you also have to declare that as a volume
Rotonen
2020-10-23 07:28:54
and FYI - i'm doing the bundling of related commands with `&&` to save on the amount of build time layers docker caches (and you could save one layer by bundling the mkdir and chown - not that it matters all too much)
Rotonen
2020-10-23 08:10:54
preempting, so do this there as well
https://docs.docker.com/engine/reference/builder/#volume Dockerfiles use a simple DSL which allows you to automate the steps you would normally manually take to create an image.
Rotonen
2020-10-23 08:21:14
and for faster local iteration cycles, you can cheat and add a volume from the command line with -v to jam your locally compiled .war in
Rotonen
2020-10-23 08:21:33
docker has plenty of escape hatches for local use
Rotonen