From 0e3f46979d1d77d8b42b42fb239ea9c4eae38082 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 23 Jun 2023 06:03:26 +0200 Subject: [PATCH] add volume to persist lsp cache --- docker-compose.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 352bd7a552..179dd8f945 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -75,7 +75,8 @@ services: restart: unless-stopped expose: - 3001 - + volumes: + - lsp_cache:/root/.cache # Uncomment to enable multiplayer on the enterprise edition # multiplayer: # image: ghcr.io/windmill-labs/windmill-multiplayer:latest @@ -91,6 +92,7 @@ services: volumes: - ./Caddyfile:/etc/caddy/Caddyfile ports: + # To change the exposed port, simply change 80:80 to :80. No other changes needed - 80:80 environment: - BASE_URL=":80" @@ -98,3 +100,4 @@ services: volumes: db_data: null worker_dependency_cache: null + lsp_cache: null