reverted podman fuck it

This commit is contained in:
2023-12-24 18:44:04 -06:00
parent a7cc07f78f
commit e8b070b824
2 changed files with 5 additions and 8 deletions

View File

@@ -1,13 +1,11 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ podman-compose ];
environment.systemPackages = with pkgs; [ docker-compose ];
virtualisation = {
podman = {
docker = {
enable = true;
enableNvidia = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
autoPrune = {
enable = true;
flags = [ "--all" ];
@@ -15,6 +13,7 @@
};
};
oci-containers = {
backend = "docker";
containers = {
collabora = {
autoStart = true;
@@ -29,15 +28,11 @@
environment = {
TZ = "America/Mexico_City";
domain = "cloud.servidos.lat";
username = "jawz";
password = "chichis";
dictionaries = "en_CA en_US es_MX es_ES fr_FR it pt_BR ru";
extra_params = ''
--o:ssl.enable=false
--o:ssl.termination=true
'';
# --o:net.post_allow.host=\:\:ffff\:172\.16\.[0-9]{1,3}\.[0-9]{1,3}
# --o:storage.wopi.host=\:\:ffff\:172\.16\.[0-9]{1,3}\.[0-9]{1,3}
};
extraOptions = [ "--cap-add" "MKNOD" ];
};