mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
d09a307ff8
Authelia was using links with href="#" that changed the URL when clicked on. Therefore, this commit removes the href property and apply link style to tags without href property.
23 lines
449 B
TypeScript
23 lines
449 B
TypeScript
import DockerCompose from "./DockerCompose";
|
|
|
|
class DockerEnvironment {
|
|
private dockerCompose: DockerCompose;
|
|
|
|
constructor(composeFiles: string[]) {
|
|
this.dockerCompose = new DockerCompose(composeFiles);
|
|
}
|
|
|
|
async start() {
|
|
await this.dockerCompose.up();
|
|
}
|
|
|
|
async logs(service: string) {
|
|
await this.dockerCompose.logs(service);
|
|
}
|
|
|
|
async stop() {
|
|
await this.dockerCompose.down();
|
|
}
|
|
}
|
|
|
|
export default DockerEnvironment; |