mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-22 15:01:57 +00:00
Added personal site container
This commit is contained in:
20
home-manager/homeserver/containers/site.nix
Normal file
20
home-manager/homeserver/containers/site.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
unstablePkgs,
|
||||
...
|
||||
}: {
|
||||
services.podman.containers = {
|
||||
bulbaspace-site = {
|
||||
image = "docker.io/library/httpd:latest-alpine";
|
||||
autoUpdate = "registry";
|
||||
network = "proxy-net";
|
||||
volumes = [
|
||||
"/home/cianh/caddy/placeholder_site/:/usr/local/apache2/htdocs:Z"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user