Compare commits
No commits in common. "7471bfbf7019898c3b4fb0917d37305d92892676" and "acacf19a1286fa3e97f37e22f50a4ee092b7fd41" have entirely different histories.
7471bfbf70
...
acacf19a12
2 changed files with 3 additions and 3 deletions
|
@ -431,11 +431,11 @@ class Ports:
|
||||||
ports = ""
|
ports = ""
|
||||||
seperator = " \\\n"
|
seperator = " \\\n"
|
||||||
ports += seperator.join(
|
ports += seperator.join(
|
||||||
[f"\t--publish {port}/tcp" for port in self.tcp_ports]
|
[f"\t--port {port}/tcp" for port in self.tcp_ports]
|
||||||
)
|
)
|
||||||
ports += seperator
|
ports += seperator
|
||||||
ports += seperator.join(
|
ports += seperator.join(
|
||||||
[f"\t--publish {port}/udp" for port in self.udp_ports]
|
[f"\t--port {port}/udp" for port in self.udp_ports]
|
||||||
)
|
)
|
||||||
ports += seperator
|
ports += seperator
|
||||||
return ports
|
return ports
|
||||||
|
|
|
@ -14,7 +14,7 @@ from pathlib import Path
|
||||||
from container import ConfigError, Container
|
from container import ConfigError, Container
|
||||||
from log import Log
|
from log import Log
|
||||||
|
|
||||||
GENERATE_VERSION = "0.0.5"
|
GENERATE_VERSION = "0.0.4"
|
||||||
HEADER = f"""#!/bin/sh
|
HEADER = f"""#!/bin/sh
|
||||||
# This script was generated by containerctl v{GENERATE_VERSION}
|
# This script was generated by containerctl v{GENERATE_VERSION}
|
||||||
# Report bugs with _this script_ to <tenno+containerctl@suij.in>
|
# Report bugs with _this script_ to <tenno+containerctl@suij.in>
|
||||||
|
|
Loading…
Add table
Reference in a new issue