Testing
This commit is contained in:
parent
c1f13fb327
commit
b598302054
2 changed files with 32 additions and 6 deletions
26
nixos/hosts/framework-server/docker/internal/cyberchef.nix
Normal file
26
nixos/hosts/framework-server/docker/internal/cyberchef.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ ... }: {
|
||||||
|
virtualisation.oci-containers.containers."cyberchef" = {
|
||||||
|
image = "coretinth/cyberchef:latest";
|
||||||
|
hostname = "cyberchef";
|
||||||
|
log-driver = "journald";
|
||||||
|
# dependsOn = [
|
||||||
|
# "promtail"
|
||||||
|
# "traefik-int"
|
||||||
|
#];
|
||||||
|
labels = {
|
||||||
|
"type" = "internal";
|
||||||
|
"traefik.enable" = "true";
|
||||||
|
"traefik.http.routers.cyberchef.tls" = "true";
|
||||||
|
"traefik.http.routers.cyberchef.entrypoints" = "web-secure-int";
|
||||||
|
"traefik.http.routers.cyberchef.rule" = "Host(`cyber.sysctl.io`)";
|
||||||
|
"traefik.http.services.cyberchef.loadbalancer.server.port" = "8000";
|
||||||
|
"traefik.http.routers.cyberchef.tls.certresolver" = "letsencrypt-int";
|
||||||
|
"traefik.docker.network" = "sysctlio_default";
|
||||||
|
# Flame Configs
|
||||||
|
"flame.icon" = "home";
|
||||||
|
"flame.type" = "app";
|
||||||
|
"flame.url" = "https://cyber.sysctl.io";
|
||||||
|
"flame.name" = "Cyberchef";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,12 +1,12 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
virtualisation.oci-containers.containers."it-tools" = {
|
virtualisation.oci-containers.containers."it-tools" = {
|
||||||
image = "docker.io/fredliang/derper";
|
image = "coretinth/it-tools:latest";
|
||||||
hostname = "it-tools";
|
hostname = "it-tools";
|
||||||
log-driver = "journald";
|
log-driver = "journald";
|
||||||
dependsOn = [
|
# dependsOn = [
|
||||||
"promtail"
|
# "promtail"
|
||||||
"traefik-int"
|
# "traefik-int"
|
||||||
];
|
#];
|
||||||
labels = {
|
labels = {
|
||||||
"type" = "internal";
|
"type" = "internal";
|
||||||
"traefik.enable" = "true";
|
"traefik.enable" = "true";
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
"flame.icon" = "home";
|
"flame.icon" = "home";
|
||||||
"flame.type" = "app";
|
"flame.type" = "app";
|
||||||
"flame.url" = "https://sysctl.io";
|
"flame.url" = "https://sysctl.io";
|
||||||
"flame.name" = "Cyberchef";
|
"flame.name" = "IT Tools";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue