diff --git a/src/routes/services/[id]/ghost/start.json.ts b/src/routes/services/[id]/ghost/start.json.ts
index f1f2250bd..4fd9e7fa4 100644
--- a/src/routes/services/[id]/ghost/start.json.ts
+++ b/src/routes/services/[id]/ghost/start.json.ts
@@ -111,7 +111,6 @@ export const post: RequestHandler = async (event) => {
}
}
};
- console.log(JSON.stringify(composeFile.volumes));
const composeFileDestination = `${workdir}/docker-compose.yaml`;
await fs.writeFile(composeFileDestination, yaml.dump(composeFile));
diff --git a/src/routes/services/index.svelte b/src/routes/services/index.svelte
index fa5602778..2b5584270 100644
--- a/src/routes/services/index.svelte
+++ b/src/routes/services/index.svelte
@@ -10,6 +10,7 @@
import { goto } from '$app/navigation';
import N8n from '$lib/components/svg/services/N8n.svelte';
import UptimeKuma from '$lib/components/svg/services/UptimeKuma.svelte';
+ import Ghost from '$lib/components/svg/services/Ghost.svelte';
export let services;
async function newService() {
@@ -64,6 +65,8 @@