Actually do the update
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/28876/head
parent
84126e8ed0
commit
d506dec51a
|
@ -18,8 +18,7 @@ import { HomeserverInstance } from "../homeserver";
|
||||||
import { Instance as MailhogInstance } from "../mailhog";
|
import { Instance as MailhogInstance } from "../mailhog";
|
||||||
|
|
||||||
// Docker tag to use for `ghcr.io/matrix-org/matrix-authentication-service` image.
|
// Docker tag to use for `ghcr.io/matrix-org/matrix-authentication-service` image.
|
||||||
// We use a debug tag so that we have a shell and can run all 3 necessary commands in one run.
|
const TAG = "0.12.0";
|
||||||
const TAG = "0.8.0-debug";
|
|
||||||
|
|
||||||
export interface ProxyInstance {
|
export interface ProxyInstance {
|
||||||
containerId: string;
|
containerId: string;
|
||||||
|
@ -87,15 +86,10 @@ export class MatrixAuthenticationService {
|
||||||
|
|
||||||
console.log(new Date(), "starting mas container...", TAG);
|
console.log(new Date(), "starting mas container...", TAG);
|
||||||
const containerId = await this.masDocker.run({
|
const containerId = await this.masDocker.run({
|
||||||
image: "ghcr.io/matrix-org/matrix-authentication-service:" + TAG,
|
image: "ghcr.io/element-hq/matrix-authentication-service:" + TAG,
|
||||||
containerName: "react-sdk-playwright-mas",
|
containerName: "react-sdk-playwright-mas",
|
||||||
params: ["-p", `${port}:8080/tcp`, "-v", `${configDir}:/config`, "--entrypoint", "sh"],
|
params: ["-p", `${port}:8080/tcp`, "-v", `${configDir}:/config`],
|
||||||
cmd: [
|
cmd: ["mas-cli", "server", "--config", "/config/config.yaml"],
|
||||||
"-c",
|
|
||||||
"mas-cli database migrate --config /config/config.yaml && " +
|
|
||||||
"mas-cli config sync --config /config/config.yaml && " +
|
|
||||||
"mas-cli server --config /config/config.yaml",
|
|
||||||
],
|
|
||||||
});
|
});
|
||||||
console.log(new Date(), "started!");
|
console.log(new Date(), "started!");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue