diff options
Diffstat (limited to 'users/grfn/bbbg/arion-compose.nix')
-rw-r--r-- | users/grfn/bbbg/arion-compose.nix | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/users/grfn/bbbg/arion-compose.nix b/users/grfn/bbbg/arion-compose.nix deleted file mode 100644 index c8a6dd156d2c..000000000000 --- a/users/grfn/bbbg/arion-compose.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ ... }: - -{ - services = { - postgres.service = { - image = "postgres:12"; - environment = { - POSTGRES_DB = "bbbg"; - POSTGRES_USER = "bbbg"; - POSTGRES_PASSWORD = "password"; - }; - ports = [ "5432:5432" ]; - }; - }; -} |