Skip to content

Commit

Permalink
Fix: dockge cannot be self-managed (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
louislam authored Nov 24, 2023
1 parent 47435d4 commit 45ab36d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
14 changes: 6 additions & 8 deletions backend/stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ export class Stack {
let stacksDir = server.stacksDir;
let stackList : Map<string, Stack>;

// Use cached stack list?
if (useCacheForManaged && this.managedStackList.size > 0) {
stackList = this.managedStackList;
} else {
Expand Down Expand Up @@ -220,22 +221,19 @@ export class Stack {
this.managedStackList = new Map(stackList);
}

// Also get the list from `docker compose ls --all --format json`
// Get status from docker compose ls
let res = childProcess.execSync("docker compose ls --all --format json");
let composeList = JSON.parse(res.toString());

for (let composeStack of composeList) {

// Skip the dockge stack
// TODO: Could be self managed?
if (composeStack.Name === "dockge") {
continue;
}

let stack = stackList.get(composeStack.Name);

// This stack probably is not managed by Dockge, but we still want to show it
if (!stack) {
// Skip the dockge stack if it is not managed by Dockge
if (composeStack.Name === "dockge") {
continue;
}
stack = new Stack(server, composeStack.Name);
stackList.set(composeStack.Name, stack);
}
Expand Down
1 change: 0 additions & 1 deletion frontend/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ declare module 'vue' {
ArrayInput: typeof import('./src/components/ArrayInput.vue')['default']
ArraySelect: typeof import('./src/components/ArraySelect.vue')['default']
BDropdown: typeof import('bootstrap-vue-next')['BDropdown']
BDropdownDivider: typeof import('bootstrap-vue-next')['BDropdownDivider']
BDropdownItem: typeof import('bootstrap-vue-next')['BDropdownItem']
BModal: typeof import('bootstrap-vue-next')['BModal']
Confirm: typeof import('./src/components/Confirm.vue')['default']
Expand Down

0 comments on commit 45ab36d

Please sign in to comment.