You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/advanced/1_self_host/aws_ecs.mdx
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ We will create 6 tasks definitions here:
109
109
- Essential container: YES
110
110
- Port mapping: 8000 / TCP / http / HTTP
111
111
- Resource allocation: 1 CPU / 1.5 GiB memory
112
-
- Environment variable: `MODE=server` and `DATABASE_URL=postgres://postgres:<DB_PASSWORD>@<DB_HOSTNAME>:5432/windmill`. Replace the hostname and password with the ones from the RDS database your created above
112
+
- Environment variable: `JSON_FMT=true`, `MODE=server` and `DATABASE_URL=postgres://postgres:<DB_PASSWORD>@<DB_HOSTNAME>:5432/windmill`. Replace the hostname and password with the ones from the RDS database your created above
113
113
- Turn on log collection for easy debugging
114
114
- Add the following health check: `CMD-SHELL, curl -f http://localhost:8000/api/version || exit 1` / 10s interval / 5s timeout and 5 retries
115
115
- Leave the rest default
@@ -129,7 +129,7 @@ We will create 6 tasks definitions here:
129
129
- Essential container: YES
130
130
- Port mapping: No port mapping for workers
131
131
- Resource allocation: 2 CPU / 3.5 GiB memory
132
-
- Environment variable: `MODE=worker`, `WORKER_GROUP=default` and `DATABASE_URL=postgres://postgres:<DB_PASSWORD>@<DB_HOSTNAME>:5432/windmill`
132
+
- Environment variable: `JSON_FMT=true`, `MODE=worker`, `WORKER_GROUP=default` and `DATABASE_URL=postgres://postgres:<DB_PASSWORD>@<DB_HOSTNAME>:5432/windmill`
133
133
- TODO: elaborate on volumes
134
134
- Turn on log collection for easy debugging
135
135
- This is it, leave the rest default
@@ -149,7 +149,7 @@ We will create 6 tasks definitions here:
149
149
- Essential container: YES
150
150
- Port mapping: no port mapping for workers
151
151
- Resource allocation: 2 CPU / 3.5 GiB memory
152
-
- Environment variable: `MODE=worker`, `WORKER_GROUP=native` and `DATABASE_URL=postgres://postgres:<DB_PASSWORD>@<DB_HOSTNAME>:5432/windmill`
152
+
- Environment variable: `JSON_FMT=true`, `MODE=worker`, `WORKER_GROUP=native` and `DATABASE_URL=postgres://postgres:<DB_PASSWORD>@<DB_HOSTNAME>:5432/windmill`
153
153
- TODO: elaborate on volumes
154
154
- Turn on log collection for easy debugging
155
155
- This is it, leave the rest default
@@ -169,7 +169,7 @@ We will create 6 tasks definitions here:
169
169
- Essential container: YES
170
170
- Port mapping: 3001 / TCP / http / HTTP
171
171
- Resource allocation: 1 CPU / 1.5 GiB memory
172
-
- Environment variable: No env variable
172
+
- Environment variable: `JSON_FMT=true`,
173
173
- TODO: elaborate on volumes
174
174
- Turn on log collection for easy debugging
175
175
- This is it, leave the rest default
@@ -189,7 +189,7 @@ We will create 6 tasks definitions here:
0 commit comments