mirror of
https://codeberg.org/icewind/tasproxy.git
synced 2026-06-03 10:14:09 +02:00
flake reorg
This commit is contained in:
parent
3f583617b4
commit
c0437522d7
12 changed files with 210 additions and 217 deletions
19
docker.nix
Normal file
19
docker.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
dockerTools,
|
||||
tasproxy,
|
||||
}:
|
||||
dockerTools.buildLayeredImage {
|
||||
name = "icewind1991/tasproxy";
|
||||
tag = "latest";
|
||||
maxLayers = 5;
|
||||
contents = [
|
||||
tasproxy
|
||||
dockerTools.caCertificates
|
||||
];
|
||||
config = {
|
||||
Cmd = ["tasproxy"];
|
||||
ExposedPorts = {
|
||||
"80/tcp" = {};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue