Update peertube requirements
This commit is contained in:
parent
28ce4a5feb
commit
56a8c33f9c
|
@ -105,6 +105,7 @@ in
|
|||
ports = [
|
||||
"127.0.0.1:${toString cfg.port}:9000"
|
||||
];
|
||||
|
||||
};
|
||||
services.worker.service = {
|
||||
image = images.authentik;
|
||||
|
@ -123,6 +124,7 @@ in
|
|||
AUTHENTIK_POSTGRESQL__NAME = "authentik";
|
||||
};
|
||||
env_file = [ cfg.envFile "${authentikEnv}" ];
|
||||
user = "root";
|
||||
};
|
||||
docker-compose.volumes = {
|
||||
database.driver = "local";
|
||||
|
|
|
@ -76,5 +76,10 @@ in
|
|||
|
||||
dataDirs = [ "/var/lib/peertube" "/mnt/data/peertube" ];
|
||||
};
|
||||
|
||||
systemd.services.peertube = {
|
||||
requires = [ "arion-authentik.service" ];
|
||||
after = [ "arion-authentik.service" ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue