Added gitea

This commit is contained in:
2025-12-01 01:17:24 +00:00
parent e701ecbb8f
commit 5883819835
2 changed files with 7 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
};
containers = {
gitea = {
image = "docker.gitea.com/gitea:latest-rootless";
image = "docker.gitea.com/gitea:latest";
autoUpdate = "registry";
network = [
"gitea-net"
@@ -21,12 +21,13 @@
];
ports = [
"3000:3000"
"2222:2222"
"2222:22"
];
environment = {
TZ = "Europe/Dublin";
};
volumes = [
"/home/cianh/gitea/data:/var/lib/gitea"
"/home/cianh/gitea/config:/etc/gitea"
"/etc/timezone:/etc/timezone:ro"
"/home/cianh/gitea:/data"
"/etc/localtime:/etc/localtime:ro"
];
};

View File

@@ -16,7 +16,7 @@
image = "docker.io/grafana/grafana:latest";
autoUpdate = "registry";
network = ["grafana-net"];
ports = ["3000:3000"];
ports = ["3100:3000"];
user = "1000:1000";
volumes = [
"/home/cianh/grafana:/var/lib/grafana:Z"