Skip to content

Commit 7fe5d6b

Browse files
committed
sdk: pin docker channels to full tags (fixes latest->tilion/fortress:151 404)
1 parent e8cd720 commit 7fe5d6b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

sdk/node/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const REPO = "tiliondev/fortress";
1515
// the mass of real users run). "latest" = 151 (newest engine). Override with { channel } or the
1616
// FORTRESS_CHANNEL env var.
1717
export const CHANNELS = {
18-
stable: { tag: "v149.0.7827.232", docker: "tilion/fortress:149" },
19-
latest: { tag: "v151.0.7908.0", docker: "tilion/fortress:151" },
18+
stable: { tag: "v149.0.7827.232", docker: "tilion/fortress:149.0.7827.232" },
19+
latest: { tag: "v151.0.7908.0", docker: "tilion/fortress:151.0.7908.0" },
2020
};
2121
const DEFAULT_CHANNEL = process.env.FORTRESS_CHANNEL || "latest";
2222
const CACHE = process.env.FORTRESS_BROWSERS_PATH || join(homedir(), ".cache", "tilion-fortress");

sdk/python/tilion_fortress/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# version the mass of real users run, so it blends in best). "latest" = 151 (newest engine).
2424
# Override per-instance with channel=..., or globally with the FORTRESS_CHANNEL env var.
2525
_CHANNELS = {
26-
"stable": {"tag": "v149.0.7827.232", "docker": "tilion/fortress:149"},
27-
"latest": {"tag": "v151.0.7908.0", "docker": "tilion/fortress:151"},
26+
"stable": {"tag": "v149.0.7827.232", "docker": "tilion/fortress:149.0.7827.232"},
27+
"latest": {"tag": "v151.0.7908.0", "docker": "tilion/fortress:151.0.7908.0"},
2828
}
2929
_DEFAULT_CHANNEL = os.environ.get("FORTRESS_CHANNEL", "stable")
3030
_CACHE = Path(os.environ.get("FORTRESS_BROWSERS_PATH",

0 commit comments

Comments
 (0)