1
0
Fork 0

Compare commits

..

No commits in common. "7471bfbf7019898c3b4fb0917d37305d92892676" and "acacf19a1286fa3e97f37e22f50a4ee092b7fd41" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -431,11 +431,11 @@ class Ports:
ports = ""
seperator = " \\\n"
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.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
return ports

View file

@ -14,7 +14,7 @@ from pathlib import Path
from container import ConfigError, Container
from log import Log
GENERATE_VERSION = "0.0.5"
GENERATE_VERSION = "0.0.4"
HEADER = f"""#!/bin/sh
# This script was generated by containerctl v{GENERATE_VERSION}
# Report bugs with _this script_ to <tenno+containerctl@suij.in>