chore(raptus): remove old files
This commit is contained in:
parent
5e80ec5741
commit
a1622edd61
3 changed files with 0 additions and 88 deletions
|
@ -1,36 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
# Runtime
|
|
||||||
virtualisation.podman = {
|
|
||||||
enable = true;
|
|
||||||
autoPrune.enable = true;
|
|
||||||
dockerCompat = true;
|
|
||||||
};
|
|
||||||
virtualisation.oci-containers.backend = "podman";
|
|
||||||
|
|
||||||
# Networks
|
|
||||||
systemd.services."podman-network-test_default" = {
|
|
||||||
path = [ pkgs.podman ];
|
|
||||||
serviceConfig = {
|
|
||||||
Type = "oneshot";
|
|
||||||
RemainAfterExit = true;
|
|
||||||
ExecStop = "podman network rm -f test_default";
|
|
||||||
};
|
|
||||||
script = ''
|
|
||||||
podman network inspect test_default || podman network create test_default
|
|
||||||
'';
|
|
||||||
partOf = [ "podman-compose-test-root.target" ];
|
|
||||||
wantedBy = [ "podman-compose-test-root.target" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
# Root service
|
|
||||||
# When started, this will automatically create all resources and start
|
|
||||||
# the containers. When stopped, this will teardown all resources.
|
|
||||||
systemd.targets."podman-compose-test-root" = {
|
|
||||||
unitConfig = {
|
|
||||||
Description = "Root target generated by compose2nix.";
|
|
||||||
};
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,52 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
virtualisation.oci-containers.containers."obsidian-livesync" = {
|
|
||||||
image = "couchdb";
|
|
||||||
environmentFiles = [ config.age.secrets.couchdb.path ];
|
|
||||||
volumes = [
|
|
||||||
"${./local.ini}:/opt/couchdb/etc/local.ini:rw"
|
|
||||||
"test_dbdata:/opt/couchdb/data:rw"
|
|
||||||
];
|
|
||||||
ports = [ "5984:5984/tcp" ];
|
|
||||||
log-driver = "journald";
|
|
||||||
extraOptions = [
|
|
||||||
"--network-alias=couchserver"
|
|
||||||
"--network=test_default"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
systemd.services."podman-obsidian-livesync" = {
|
|
||||||
serviceConfig = {
|
|
||||||
Restart = lib.mkOverride 500 "always";
|
|
||||||
};
|
|
||||||
after = [
|
|
||||||
"podman-network-test_default.service"
|
|
||||||
"podman-volume-test_dbdata.service"
|
|
||||||
];
|
|
||||||
requires = [
|
|
||||||
"podman-network-test_default.service"
|
|
||||||
"podman-volume-test_dbdata.service"
|
|
||||||
];
|
|
||||||
partOf = [ "podman-compose-test-root.target" ];
|
|
||||||
wantedBy = [ "podman-compose-test-root.target" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
# Volumes
|
|
||||||
systemd.services."podman-volume-test_dbdata" = {
|
|
||||||
path = [ pkgs.podman ];
|
|
||||||
serviceConfig = {
|
|
||||||
Type = "oneshot";
|
|
||||||
RemainAfterExit = true;
|
|
||||||
};
|
|
||||||
script = ''
|
|
||||||
podman volume inspect test_dbdata || podman volume create test_dbdata
|
|
||||||
'';
|
|
||||||
partOf = [ "podman-compose-test-root.target" ];
|
|
||||||
wantedBy = [ "podman-compose-test-root.target" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue