48 lines
962 B
Nix
48 lines
962 B
Nix
{ pkgs, ... }: {
|
|
|
|
project.name = "authentik";
|
|
|
|
services = {
|
|
|
|
postgres.service = {
|
|
image = "";
|
|
restart = "";
|
|
command = "";
|
|
volumes = [];
|
|
healthcheck = {};
|
|
user = "";
|
|
env_file = "";
|
|
};
|
|
|
|
redis.service = {
|
|
image = "";
|
|
restart = "";
|
|
command = "";
|
|
volumes = [];
|
|
healthcheck = {};
|
|
user = "";
|
|
env_file = "";
|
|
};
|
|
|
|
server.service = {
|
|
image = "";
|
|
restart = "";
|
|
command = "";
|
|
volumes = [];
|
|
healthcheck = {};
|
|
user = "";
|
|
env_file = "";
|
|
};
|
|
|
|
worker.service = {
|
|
image = "";
|
|
restart = "";
|
|
command = "";
|
|
volumes = [];
|
|
healthcheck = {};
|
|
user = "";
|
|
env_file = "";
|
|
};
|
|
};
|
|
}
|