From f700a3454e7a7ddcc59bdf16702ab35792d481ac Mon Sep 17 00:00:00 2001 From: Akira Date: Thu, 19 Feb 2026 13:54:09 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3?= =?UTF-8?q?=E3=81=8Clastest=E3=81=A0=E3=81=A8=E8=B5=B7=E5=8B=95=E3=81=97?= =?UTF-8?q?=E3=81=AA=E3=81=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 2 +- docker-compose.yml | 12 +++++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.env b/.env index ad88751..c439b19 100644 --- a/.env +++ b/.env @@ -2,7 +2,7 @@ DATABASE_URL=postgres://postgres:changeme@db/windmill?sslmode=disable # For Enterprise Edition, use: # WM_IMAGE=ghcr.io/windmill-labs/windmill-ee:main -WM_IMAGE=ghcr.io/windmill-labs/windmill:main +WM_IMAGE=ghcr.io/windmill-labs/windmill:v1.5.3 # To use another port than :80, setup the Caddyfile and the caddy section of the docker-compose to your needs: https://caddyserver.com/docs/getting-started diff --git a/docker-compose.yml b/docker-compose.yml index 70a4f57..f630fd2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: "3.9" - x-logging: &default-logging driver: "json-file" options: @@ -39,7 +37,7 @@ services: windmill_server: image: ${WM_IMAGE} container_name: windmill_server - pull_policy: always + pull_policy: if_not_present deploy: replicas: 1 restart: unless-stopped @@ -77,7 +75,7 @@ services: windmill_worker: image: ${WM_IMAGE} - pull_policy: always + pull_policy: if_not_present deploy: replicas: 3 resources: @@ -104,7 +102,7 @@ services: windmill_worker_native: image: ${WM_IMAGE} - pull_policy: always + pull_policy: if_not_present deploy: replicas: 1 resources: @@ -128,8 +126,8 @@ services: logging: *default-logging windmill_extra: - image: ghcr.io/windmill-labs/windmill-extra:latest - pull_policy: always + image: ghcr.io/windmill-labs/windmill-extra:v1.5.3 + pull_policy: if_not_present restart: unless-stopped expose: - 3001