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, ... }:
{
virtualisation = {
docker.enable = true;
podman = {
enable = true;
dockerCompat = true;
};
oci-containers = {
backend = "docker";
backend = "podman";
containers = {
kotori = {
image = "kamov/kotori";
image = "kamov/kotori:latest";
environmentFiles = [ /root/secrets/kotori.env ];
autoStart = true;
};