mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 07:36:23 +01:00
74 lines
2.9 KiB
Nix
74 lines
2.9 KiB
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [ inputs.arion.nixosModules.arion ];
|
|
virtualisation.docker.enable = true;
|
|
virtualisation.arion = {
|
|
backend = "docker";
|
|
projects.penpot.settings = {
|
|
networks.penpot.name = "penpot";
|
|
services = {
|
|
"penpot-backend".service = {
|
|
image = "penpotapp/backend:latest";
|
|
volumes = [ "/penpot_assets:/opt/data/assets" ];
|
|
restart = "always";
|
|
depends_on = [ "penpot-postgres" "penpot-redis" ];
|
|
networks = [ "penpot" ];
|
|
environment = {
|
|
"PENPOT_FLAGS" = "enable-registration enable-login-with-password disable-email-verification enable-smtp enable-prepl-server";
|
|
"PENPOT_PUBLIC_URI" = "https://pp.schrottkatze.de";
|
|
"PENPOT_DATABASE_URI" = "postgresql://penpot-postgres/penpot";
|
|
"PENPOT_DATABASE_USERNAME" = "penpot";
|
|
"PENPOT_DATABASE_PASSWORD" = "penpot"; "PENPOT_REDIS_URI" = "redis://penpot-redis/0";
|
|
"PENPOT_ASSETS_STORAGE_BACKEND" = "assets-fs";
|
|
"PENPOT_STORAGE_ASSETS_FS_DIRECTORY" = "/opt/data/assets";
|
|
"PENPOT_TELEMETRY_ENABLED" = "false";
|
|
"PENPOT_SMTP_DEFAULT_FROM" = "noreply-pp@schrottkatze.de";
|
|
"PENPOT_SMTP_DEFAULT_REPLY_TO" = "noreply-pp@schrottkatze.de";
|
|
"PENPOT_SMTP_HOST" = "smtp.migadu.com";
|
|
"PENPOT_SMTP_PORT" = "465";
|
|
"PENPOT_SMTP_USERNAME" = "noreply-pp@schrottkatze.de";
|
|
"PENPOT_SMTP_PASSWORD" = builtins.readFile ../secret-data/penpot-smtp-pass;
|
|
"PENPOT_SMTP_TLS" = "true";
|
|
"PENPOT_SMTP_SSL" = "false";
|
|
};
|
|
};
|
|
"penpot-frontend".service = {
|
|
image = "penpotapp/frontend:latest";
|
|
restart = "always";
|
|
ports = [ "9001:80" ];
|
|
volumes = [ "/penpot_assets:/opt/data/assets" ];
|
|
depends_on = [ "penpot-backend" "penpot-exporter" ];
|
|
networks = [ "penpot" ];
|
|
};
|
|
"penpot-exporter".service = {
|
|
image = "penpotapp/exporter:latest";
|
|
restart = "always";
|
|
networks = [ "penpot" ];
|
|
environment = {
|
|
"PENPOT_PUBLIC_URI" = "http://penpot-frontend";
|
|
"PENPOT_REDIS_URI" = "redis://penpot-redis/0";
|
|
};
|
|
};
|
|
"penpot-postgres".service = {
|
|
image = "postgres:15";
|
|
restart = "always";
|
|
stop_signal = "SIGINT";
|
|
volumes = [ "/penpot_postgres_v15:/var/lib/postgresql/data" ];
|
|
networks = [ "penpot" ];
|
|
environment = {
|
|
"POSTGRES_INITDB_ARGS" = "--data-checksums";
|
|
"POSTGRES_DB" = "penpot";
|
|
"POSTGRES_USER" = "penpot";
|
|
"POSTGRES_PASSWORD" = "penpot";
|
|
};
|
|
};
|
|
"penpot-redis".service = {
|
|
image = "redis:7";
|
|
restart = "always";
|
|
networks = [ "penpot" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|