From ef6de27957e5d0ac55b22cfb0785c220346595bc Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Sat, 15 Mar 2025 21:20:08 +0800 Subject: [PATCH] chore(docker): delete compose.local.yml file --- compose.local.yml | 62 ----------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 compose.local.yml diff --git a/compose.local.yml b/compose.local.yml deleted file mode 100644 index 90c331f..0000000 --- a/compose.local.yml +++ /dev/null @@ -1,62 +0,0 @@ -services: - monaco-editor-lsp-next: - build: - context: ./ - dockerfile: Dockerfile - image: monaco-editor-lsp-next:latest - container_name: monaco-editor-lsp-next - restart: always - ports: - - "3000:3000" - networks: - - monaco-editor-lsp-next - depends_on: - - lsp-c - - lsp-cpp - healthcheck: - test: [ "CMD-SHELL", "curl --fail http://localhost:3000 || exit 1" ] - interval: 10s - timeout: 5s - retries: 5 - start_period: 10s - volumes: - - /var/run/docker.sock:/var/run/docker.sock - - lsp-c: - build: - context: ./docker/lsp/clangd - dockerfile: Dockerfile - image: lsp-c:latest - container_name: lsp-c - restart: always - ports: - - "4594:3000" - networks: - - monaco-editor-lsp-next - healthcheck: - test: [ "CMD-SHELL", "nc -zv localhost 3000" ] - interval: 10s - timeout: 5s - retries: 5 - - lsp-cpp: - build: - context: ./docker/lsp/clangd - dockerfile: Dockerfile - image: lsp-cpp:latest - container_name: lsp-cpp - restart: always - ports: - - "4595:3000" - networks: - - monaco-editor-lsp-next - healthcheck: - test: [ "CMD-SHELL", "nc -zv localhost 3000" ] - interval: 10s - timeout: 5s - retries: 5 - -networks: - monaco-editor-lsp-next: - name: monaco-editor-lsp-next - driver: bridge