mirror of
https://codeberg.org/icewind/taspromto.git
synced 2026-06-03 16:44:11 +02:00
flake reorg
This commit is contained in:
parent
eeb6efb5f7
commit
7ec17d75ad
9 changed files with 200 additions and 202 deletions
19
docker.nix
Normal file
19
docker.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
dockerTools,
|
||||
taspromto,
|
||||
}:
|
||||
dockerTools.buildLayeredImage {
|
||||
name = "icewind1991/taspromto";
|
||||
tag = "latest";
|
||||
maxLayers = 5;
|
||||
contents = [
|
||||
taspromto
|
||||
dockerTools.caCertificates
|
||||
];
|
||||
config = {
|
||||
Cmd = ["taspromto"];
|
||||
ExposedPorts = {
|
||||
"80/tcp" = {};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue