Skip to content

Commit 5d17dd1

Browse files
Update Appwrite to version 1.7.4
1 parent dc290a6 commit 5d17dd1

File tree

6 files changed

+30
-29
lines changed

6 files changed

+30
-29
lines changed

src/routes/blog/post/building-apps-with-bun-and-appwrite/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Installing a self-hosted version of Appwrite is pretty straight-forward, all you
7575
--volume /var/run/docker.sock:/var/run/docker.sock \
7676
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
7777
--entrypoint="install" \
78-
appwrite/appwrite:1.7.3
78+
appwrite/appwrite:1.7.4
7979
```
8080

8181
For one-click setups, check out the [installation docs](https://appwrite.io/docs/self-hosting).

src/routes/blog/post/email-otp-auth-sveltekit/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ docker run -it --rm \
4242
--volume /var/run/docker.sock:/var/run/docker.sock \
4343
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
4444
--entrypoint="install" \
45-
appwrite/appwrite:1.7.3
45+
appwrite/appwrite:1.7.4
4646
```
4747

4848
Once that is done, [set up email delivery](https://appwrite.io/docs/advanced/self-hosting/email) on your self-hosted Appwrite instance. This can be done by visiting your `appwrite` directory and updating the `.env` file in a similar manner as follows:

src/routes/blog/post/planetscale-databases-alternative/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ docker run -it --rm \
7070
--volume /var/run/docker.sock:/var/run/docker.sock \
7171
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
7272
--entrypoint="install" \
73-
appwrite/appwrite:1.7.3
73+
appwrite/appwrite:1.7.4
7474
```
7575

7676
We have a dedicated [self-hosting guide](/docs/advanced/self-hosting) in our docs for more info.

src/routes/docs/advanced/self-hosting/+page.markdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ docker run -it --rm \
3535
--volume /var/run/docker.sock:/var/run/docker.sock \
3636
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
3737
--entrypoint="install" \
38-
appwrite/appwrite:1.7.3
38+
appwrite/appwrite:1.7.4
3939
```
4040
{% /tabsitem %}
4141

@@ -46,15 +46,15 @@ docker run -it --rm ^
4646
--volume //var/run/docker.sock:/var/run/docker.sock ^
4747
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
4848
--entrypoint="install" ^
49-
appwrite/appwrite:1.7.3
49+
appwrite/appwrite:1.7.4
5050
```
5151
## Powershell
5252
```powershell
5353
docker run -it --rm `
5454
--volume /var/run/docker.sock:/var/run/docker.sock `
5555
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
5656
--entrypoint="install" `
57-
appwrite/appwrite:1.7.3
57+
appwrite/appwrite:1.7.4
5858
```
5959
{% /tabsitem %}
6060
{% /tabs %}

src/routes/docs/advanced/self-hosting/update/+page.markdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ docker run -it --rm \
3939
--volume /var/run/docker.sock:/var/run/docker.sock \
4040
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
4141
--entrypoint="upgrade" \
42-
appwrite/appwrite:1.7.3
42+
appwrite/appwrite:1.7.4
4343
```
4444

4545
## CMD
@@ -49,7 +49,7 @@ docker run -it --rm ^
4949
--volume //var/run/docker.sock:/var/run/docker.sock ^
5050
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
5151
--entrypoint="upgrade" ^
52-
appwrite/appwrite:1.7.3
52+
appwrite/appwrite:1.7.4
5353
```
5454

5555
## PowerShell
@@ -59,7 +59,7 @@ docker run -it --rm `
5959
--volume /var/run/docker.sock:/var/run/docker.sock `
6060
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
6161
--entrypoint="upgrade" `
62-
appwrite/appwrite:1.7.3
62+
appwrite/appwrite:1.7.4
6363
```
6464

6565
This will pull the `docker-compose.yml` file for the new version and perform the installation.

static/install/compose

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
- appwrite
3333

3434
appwrite:
35-
image: appwrite/appwrite:1.7.3
35+
image: appwrite/appwrite:1.7.4
3636
container_name: appwrite
3737
<<: *x-logging
3838
restart: unless-stopped
@@ -167,10 +167,11 @@ services:
167167
- _APP_MIGRATIONS_FIREBASE_CLIENT_ID
168168
- _APP_MIGRATIONS_FIREBASE_CLIENT_SECRET
169169
- _APP_ASSISTANT_OPENAI_API_KEY
170+
170171
appwrite-console:
171172
<<: *x-logging
172173
container_name: appwrite-console
173-
image: appwrite/console:6.0.11
174+
image: appwrite/console:6.0.13
174175
restart: unless-stopped
175176
networks:
176177
- appwrite
@@ -190,7 +191,7 @@ services:
190191
- traefik.http.routers.appwrite_console_https.tls=true
191192

192193
appwrite-realtime:
193-
image: appwrite/appwrite:1.7.3
194+
image: appwrite/appwrite:1.7.4
194195
entrypoint: realtime
195196
container_name: appwrite-realtime
196197
<<: *x-logging
@@ -233,7 +234,7 @@ services:
233234
- _APP_LOGGING_CONFIG
234235

235236
appwrite-worker-audits:
236-
image: appwrite/appwrite:1.7.3
237+
image: appwrite/appwrite:1.7.4
237238
entrypoint: worker-audits
238239
<<: *x-logging
239240
container_name: appwrite-worker-audits
@@ -259,7 +260,7 @@ services:
259260
- _APP_LOGGING_CONFIG
260261

261262
appwrite-worker-webhooks:
262-
image: appwrite/appwrite:1.7.3
263+
image: appwrite/appwrite:1.7.4
263264
entrypoint: worker-webhooks
264265
<<: *x-logging
265266
container_name: appwrite-worker-webhooks
@@ -287,7 +288,7 @@ services:
287288
- _APP_LOGGING_CONFIG
288289

289290
appwrite-worker-deletes:
290-
image: appwrite/appwrite:1.7.3
291+
image: appwrite/appwrite:1.7.4
291292
entrypoint: worker-deletes
292293
<<: *x-logging
293294
container_name: appwrite-worker-deletes
@@ -350,7 +351,7 @@ services:
350351
- _APP_EMAIL_CERTIFICATES
351352

352353
appwrite-worker-databases:
353-
image: appwrite/appwrite:1.7.3
354+
image: appwrite/appwrite:1.7.4
354355
entrypoint: worker-databases
355356
<<: *x-logging
356357
container_name: appwrite-worker-databases
@@ -376,7 +377,7 @@ services:
376377
- _APP_LOGGING_CONFIG
377378

378379
appwrite-worker-builds:
379-
image: appwrite/appwrite:1.7.3
380+
image: appwrite/appwrite:1.7.4
380381
entrypoint: worker-builds
381382
<<: *x-logging
382383
container_name: appwrite-worker-builds
@@ -444,7 +445,7 @@ services:
444445
- _APP_DOMAIN_SITES
445446

446447
appwrite-worker-certificates:
447-
image: appwrite/appwrite:1.7.3
448+
image: appwrite/appwrite:1.7.4
448449
entrypoint: worker-certificates
449450
<<: *x-logging
450451
container_name: appwrite-worker-certificates
@@ -479,7 +480,7 @@ services:
479480
- _APP_LOGGING_CONFIG
480481

481482
appwrite-worker-functions:
482-
image: appwrite/appwrite:1.7.3
483+
image: appwrite/appwrite:1.7.4
483484
entrypoint: worker-functions
484485
<<: *x-logging
485486
container_name: appwrite-worker-functions
@@ -518,7 +519,7 @@ services:
518519
- _APP_LOGGING_CONFIG
519520

520521
appwrite-worker-mails:
521-
image: appwrite/appwrite:1.7.3
522+
image: appwrite/appwrite:1.7.4
522523
entrypoint: worker-mails
523524
<<: *x-logging
524525
container_name: appwrite-worker-mails
@@ -552,7 +553,7 @@ services:
552553
- _APP_OPTIONS_FORCE_HTTPS
553554

554555
appwrite-worker-messaging:
555-
image: appwrite/appwrite:1.7.3
556+
image: appwrite/appwrite:1.7.4
556557
entrypoint: worker-messaging
557558
<<: *x-logging
558559
container_name: appwrite-worker-messaging
@@ -603,7 +604,7 @@ services:
603604
- _APP_STORAGE_WASABI_BUCKET
604605

605606
appwrite-worker-migrations:
606-
image: appwrite/appwrite:1.7.3
607+
image: appwrite/appwrite:1.7.4
607608
entrypoint: worker-migrations
608609
<<: *x-logging
609610
container_name: appwrite-worker-migrations
@@ -637,7 +638,7 @@ services:
637638
- _APP_MIGRATIONS_FIREBASE_CLIENT_SECRET
638639

639640
appwrite-task-maintenance:
640-
image: appwrite/appwrite:1.7.3
641+
image: appwrite/appwrite:1.7.4
641642
entrypoint: maintenance
642643
<<: *x-logging
643644
container_name: appwrite-task-maintenance
@@ -674,7 +675,7 @@ services:
674675
- _APP_MAINTENANCE_RETENTION_SCHEDULES
675676

676677
appwrite-task-stats-resources:
677-
image: appwrite/appwrite:1.7.3
678+
image: appwrite/appwrite:1.7.4
678679
container_name: appwrite-task-stats-resources
679680
entrypoint: stats-resources
680681
<<: *x-logging
@@ -703,7 +704,7 @@ services:
703704
- _APP_STATS_RESOURCES_INTERVAL
704705

705706
appwrite-worker-stats-resources:
706-
image: appwrite/appwrite:1.7.3
707+
image: appwrite/appwrite:1.7.4
707708
entrypoint: worker-stats-resources
708709
container_name: appwrite-worker-stats-resources
709710
<<: *x-logging
@@ -731,7 +732,7 @@ services:
731732
- _APP_STATS_RESOURCES_INTERVAL
732733

733734
appwrite-worker-stats-usage:
734-
image: appwrite/appwrite:1.7.3
735+
image: appwrite/appwrite:1.7.4
735736
entrypoint: worker-stats-usage
736737
container_name: appwrite-worker-stats-usage
737738
<<: *x-logging
@@ -759,7 +760,7 @@ services:
759760
- _APP_USAGE_AGGREGATION_INTERVAL
760761

761762
appwrite-task-scheduler-functions:
762-
image: appwrite/appwrite:1.7.3
763+
image: appwrite/appwrite:1.7.4
763764
entrypoint: schedule-functions
764765
container_name: appwrite-task-scheduler-functions
765766
<<: *x-logging
@@ -784,7 +785,7 @@ services:
784785
- _APP_DB_PASS
785786

786787
appwrite-task-scheduler-executions:
787-
image: appwrite/appwrite:1.7.3
788+
image: appwrite/appwrite:1.7.4
788789
entrypoint: schedule-executions
789790
container_name: appwrite-task-scheduler-executions
790791
<<: *x-logging
@@ -809,7 +810,7 @@ services:
809810
- _APP_DB_PASS
810811

811812
appwrite-task-scheduler-messages:
812-
image: appwrite/appwrite:1.7.3
813+
image: appwrite/appwrite:1.7.4
813814
entrypoint: schedule-messages
814815
container_name: appwrite-task-scheduler-messages
815816
<<: *x-logging

0 commit comments

Comments
 (0)