docker -> podman

This commit is contained in:
rotterdam 2023-03-21 12:37:29 -03:00
parent 46f51c323e
commit c75da9f056

View file

@ -2,9 +2,9 @@
{
virtualisation = {
docker.enable = true;
podman.enable = true;
oci-containers = {
backend = "docker";
backend = "podman";
containers = {
"actual" = {
image = "jlongster/actual-server:latest";
@ -39,28 +39,6 @@
"--pull=always"
];
};
"syncthing" = {
image = "lscr.io/linuxserver/syncthing:1.20.4";
environment = {
PUID = "1000";
PGID = "100";
TZ = "America/Bahia";
};
volumes = [
"/data/syncthing/config:/config"
"/data/syncthing/data1:/data1"
"/data/syncthing/data2:/data2"
"/data/syncthing/notes:/sync/notes"
];
ports = [
"${config.ports.syncthing}:8384"
"22000:22000"
"21027:21027/udp"
];
extraOptions = [
"--pull=always"
];
};
"whoogle" = {
image = "benbusby/whoogle-search:latest";
environment = {