Skip to content

Commit 5fcd432

Browse files
committed
fix windmill template
1 parent 3f8324d commit 5fcd432

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

templates/compose/windmill.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
volumes:
1616
- db_data:/var/lib/postgresql/data
1717
environment:
18-
POSTGRES_PASSWORD: $SERVICE_PASSWORD_WINDMILL_POSTGRES
18+
POSTGRES_PASSWORD: $SERVICE_PASSWORD_POSTGRES
1919
POSTGRES_DB: windmill
2020
healthcheck:
2121
test: ["CMD-SHELL", "pg_isready -U postgres"]
@@ -26,8 +26,8 @@ services:
2626
windmill_server:
2727
image: ghcr.io/windmill-labs/windmill:main
2828
environment:
29-
- SERVICE_FQDN_WINDMILL
30-
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
29+
- SERVICE_FQDN_WINDMILL_8000
30+
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_POSTGRES@db/windmill
3131
- MODE=server
3232
- BASE_URL=$SERVICE_FQDN_WINDMILL
3333
depends_on:
@@ -39,7 +39,7 @@ services:
3939
windmill_worker_1:
4040
image: ghcr.io/windmill-labs/windmill:main
4141
environment:
42-
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
42+
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_POSTGRES@db/windmill
4343
- MODE=worker
4444
- WORKER_GROUP=default
4545
depends_on:
@@ -53,7 +53,7 @@ services:
5353
windmill_worker_2:
5454
image: ghcr.io/windmill-labs/windmill:main
5555
environment:
56-
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
56+
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_POSTGRES@db/windmill
5757
- MODE=worker
5858
- WORKER_GROUP=default
5959
depends_on:
@@ -67,7 +67,7 @@ services:
6767
windmill_worker_3:
6868
image: ghcr.io/windmill-labs/windmill:main
6969
environment:
70-
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
70+
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_POSTGRES@db/windmill
7171
- MODE=worker
7272
- WORKER_GROUP=default
7373
depends_on:
@@ -81,7 +81,7 @@ services:
8181
windmill_worker_native:
8282
image: ghcr.io/windmill-labs/windmill:main
8383
environment:
84-
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
84+
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_POSTGRES@db/windmill
8585
- MODE=worker
8686
- WORKER_GROUP=native
8787
- NUM_WORKERS=8

0 commit comments

Comments
 (0)