Skip to content

Commit

Permalink
update connet docker config
Browse files Browse the repository at this point in the history
  • Loading branch information
ingon committed Jan 9, 2025
1 parent c439425 commit 1d7571c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion nix/docker.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,10 @@ pkgs.dockerTools.buildLayeredImage {
name = "ghcr.io/connet-dev/connet";
tag = "latest";
contents = with pkgs; [ cacert ];
config.entrypoint = "${connet}/bin/connet";
config = {
Entrypoint = [ "${connet}/bin/connet" ];
Cmd = [ "--help" ];
Expose = [ "19190/udp" "19191/udp" "19192/udp" ];
Volume = "/data";
};
}

0 comments on commit 1d7571c

Please sign in to comment.