バージョンがlastestだと起動しない

This commit is contained in:
Akira
2026-02-19 13:54:09 +09:00
parent 0d1278b9ac
commit f700a3454e
2 changed files with 6 additions and 8 deletions

2
.env
View File

@@ -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

View File

@@ -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