feat(grfn/bbbg): Init
This will eventually become a signup sheet + no-show tracker for my local board game meetup group Change-Id: Id8d1d80d95d1e2fda5041275cff2fecfd6fa43f1
This commit is contained in:
parent
479e9ea279
commit
c3cb7b0df8
35 changed files with 2549 additions and 0 deletions
15
users/grfn/bbbg/arion-compose.nix
Normal file
15
users/grfn/bbbg/arion-compose.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
services = {
|
||||
postgres.service = {
|
||||
image = "postgres:12";
|
||||
environment = {
|
||||
POSTGRES_DB = "bbbg";
|
||||
POSTGRES_USER = "bbbg";
|
||||
POSTGRES_PASSWORD = "password";
|
||||
};
|
||||
ports = [ "5432:5432" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue