mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
nixos-container: add --port option for nixos-container (forward network ports to systemd-nspawn container)
This commit is contained in:
parent
3490508ed1
commit
a238c8a575
@ -89,6 +89,9 @@ let
|
||||
if [ -n "$HOST_BRIDGE" ]; then
|
||||
extraFlags+=" --network-bridge=$HOST_BRIDGE"
|
||||
fi
|
||||
if [ -n "$HOST_PORT" ]; then
|
||||
extraFlags+=" --port=$HOST_PORT"
|
||||
fi
|
||||
fi
|
||||
|
||||
extraFlags+=" ${concatStringsSep " " (mapAttrsToList nspawnExtraVethArgs cfg.extraVeths)}"
|
||||
|
@ -16,7 +16,7 @@ umask 0022;
|
||||
sub showHelp {
|
||||
print <<EOF;
|
||||
Usage: nixos-container list
|
||||
nixos-container create <container-name> [--nixos-path <path>] [--system-path <path>] [--config-file <path>] [--config <string>] [--ensure-unique-name] [--auto-start] [--bridge <iface>]
|
||||
nixos-container create <container-name> [--nixos-path <path>] [--system-path <path>] [--config-file <path>] [--config <string>] [--ensure-unique-name] [--auto-start] [--bridge <iface>] [--port <port>]
|
||||
nixos-container destroy <container-name>
|
||||
nixos-container start <container-name>
|
||||
nixos-container stop <container-name>
|
||||
@ -37,6 +37,7 @@ my $nixosPath;
|
||||
my $ensureUniqueName = 0;
|
||||
my $autoStart = 0;
|
||||
my $bridge;
|
||||
my $port;
|
||||
my $extraConfig;
|
||||
my $signal;
|
||||
my $configFile;
|
||||
@ -46,6 +47,7 @@ GetOptions(
|
||||
"ensure-unique-name" => \$ensureUniqueName,
|
||||
"auto-start" => \$autoStart,
|
||||
"bridge=s" => \$bridge,
|
||||
"port=s" => \$port,
|
||||
"system-path=s" => \$systemPath,
|
||||
"signal=s" => \$signal,
|
||||
"nixos-path=s" => \$nixosPath,
|
||||
@ -156,6 +158,7 @@ if ($action eq "create") {
|
||||
push @conf, "HOST_ADDRESS=$hostAddress\n";
|
||||
push @conf, "LOCAL_ADDRESS=$localAddress\n";
|
||||
push @conf, "HOST_BRIDGE=$bridge\n";
|
||||
push @conf, "HOST_PORT=$port\n";
|
||||
push @conf, "AUTO_START=$autoStart\n";
|
||||
write_file($confFile, \@conf);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user