swap kotori backend

This commit is contained in:
Maciej Jur 2023-07-19 18:58:53 +02:00
parent af1ca1b3a0
commit 1a7d636a77
No known key found for this signature in database
GPG key ID: ADA3BF323198C639

View file

@ -1,12 +1,15 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
virtualisation = { virtualisation = {
docker.enable = true; podman = {
enable = true;
dockerCompat = true;
};
oci-containers = { oci-containers = {
backend = "docker"; backend = "podman";
containers = { containers = {
kotori = { kotori = {
image = "kamov/kotori"; image = "kamov/kotori:latest";
environmentFiles = [ /root/secrets/kotori.env ]; environmentFiles = [ /root/secrets/kotori.env ];
autoStart = true; autoStart = true;
}; };