2020-11-04 03:39:51
I wanna get the dockerhub build flow going.
This seem sane?
Some ideas for improvement:
1. have pool and miner entrypoints on the way, but it's easier to test with a node up.
2. could make or use a separate bazel build environment image to greatly reduce build time.
3. Mounting a volume manually mandatory to force user to keep private keys, but I'd like to make it optional/easier for nodes, explorers, etc.
4. I'd like to edit existing config files in volumes rather than just overwriting them with environmental variables.
GitHub
2020-11-04 07:36:43
*https://github.com/snowblossomcoin/rosesnow/compare/0c07db7dafc2...5da79189280a*
https://github.com/snowblossomcoin/rosesnow/commit/5da79189280ac242b4f8432b8deacbebf9377acd - Working e2e tests
GitHub
2020-11-04 07:37:41
that's hot
Rotonen
2020-11-04 07:37:53
now to set them up to run on every commit
Rotonen
2020-11-04 07:38:20
or push head? running on every commit requires a lot of rigor about every commit always being able to have green tests
Rotonen
2020-11-04 16:50:52
I try not to push half done things that don't work.
That should run fine on every commit. But that is partly because when given the same inputs it makes the exact same transaction hash. So it doesn't error as a double spend.
Fireduck
2020-11-04 16:51:16
That was accidental but helpful
Fireduck
2020-11-04 22:28:27
@Rotonen I think it's useful to build uncommitted changes.
As for dockerfile opaqueness, eh. I see the value in being explicit but I think it adds layers and makes things less organized?
Clueless
2020-11-04 22:48:26
*https://github.com/snowblossomcoin/snowblossom/compare/9f872d9c402a...4d08a842270c*
https://github.com/snowblossomcoin/snowblossom/commit/44ce58062cc69debf086744268d116b20a4df90e - docker deployment
https://github.com/snowblossomcoin/snowblossom/commit/4d08a842270c32684c62ce900bcda4fc459ee1f1 - Merge pull request #176 from snowblossomcoin/docker
GitHub
2020-11-04 22:48:28
[snowblossomcoin/snowblossom] #176 docker deployment
GitHub
2020-11-04 23:09:58
None
2020-11-04 23:23:26
None
2020-11-04 23:36:50
I intend for docker images to be tagged as:
`dev` - git master - latest commits
`latest` - latest release
`<tag/branch>`
Clueless
2020-11-04 23:49:50
@Rotonen ah, I think I see what you mean now with git committed changes. I'm looking into how to do that.
Clueless