Piggy Bank
-
So I'm writing this as a side project, mostly to learn. It sucks I know, but if you're a Go developer you can give me pointers.
It's called Piggy Bank because it's a poor man's version of Vault.
-
You can get the relases (or right now release) here: https://github.com/hooksie1/piggybank/releases/
-
I'll add it to the readme but here's how with Docker:
docker run --name piggy -p 8080:8080 -e "DATABASE_PATH=./piggy.db" hooksie1/piggy-bank:0.0.4
Only use the container for testing right now. Since the image uses "FROM scratch" I need to figure out how to mount volumes to store data. Otherwise the only way is to take a backup of the database through the API.
-
-
If I get time tonight I will look at this and test it to see how it works for me.
-
@jmoore said in Piggy Bank:
If I get time tonight I will look at this and test it to see how it works for me.
It's def still alpha so don't have high hopes lol.