diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 94ac8288c..965a3efb3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -32,7 +32,7 @@ importers: version: 0.26.0 '@appwrite.io/repo': specifier: github:appwrite/appwrite#main - version: https://codeload.github.com/appwrite/appwrite/tar.gz/6b7071ca944f68c0f2976988f9eb13f2fad969c5 + version: https://codeload.github.com/appwrite/appwrite/tar.gz/72087298056c5db3dca81d2ca66725dcf47d41bb '@eslint/compat': specifier: ^1.2.7 version: 1.2.8(eslint@9.24.0(jiti@2.4.2)) @@ -287,8 +287,8 @@ packages: '@appwrite.io/pink@0.26.0': resolution: {integrity: sha512-iPeGE56pauzxuIXt15ZswjKCErwp3QdF3XOlJZfyYY7J2nirra85JNTL+3lWuFIf8yYWL7NbvCjhf8ig79TgwA==} - '@appwrite.io/repo@https://codeload.github.com/appwrite/appwrite/tar.gz/6b7071ca944f68c0f2976988f9eb13f2fad969c5': - resolution: {tarball: https://codeload.github.com/appwrite/appwrite/tar.gz/6b7071ca944f68c0f2976988f9eb13f2fad969c5} + '@appwrite.io/repo@https://codeload.github.com/appwrite/appwrite/tar.gz/72087298056c5db3dca81d2ca66725dcf47d41bb': + resolution: {tarball: https://codeload.github.com/appwrite/appwrite/tar.gz/72087298056c5db3dca81d2ca66725dcf47d41bb} version: 0.0.0 '@asamuzakjp/css-color@3.2.0': @@ -4249,7 +4249,7 @@ snapshots: normalize.css: 8.0.1 the-new-css-reset: 1.11.3 - '@appwrite.io/repo@https://codeload.github.com/appwrite/appwrite/tar.gz/6b7071ca944f68c0f2976988f9eb13f2fad969c5': {} + '@appwrite.io/repo@https://codeload.github.com/appwrite/appwrite/tar.gz/72087298056c5db3dca81d2ca66725dcf47d41bb': {} '@asamuzakjp/css-color@3.2.0': dependencies: diff --git a/src/routes/blog/post/building-apps-with-bun-and-appwrite/+page.markdoc b/src/routes/blog/post/building-apps-with-bun-and-appwrite/+page.markdoc index 29fe19772..34522b082 100644 --- a/src/routes/blog/post/building-apps-with-bun-and-appwrite/+page.markdoc +++ b/src/routes/blog/post/building-apps-with-bun-and-appwrite/+page.markdoc @@ -75,7 +75,7 @@ Installing a self-hosted version of Appwrite is pretty straight-forward, all you --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --entrypoint="install" \ - appwrite/appwrite:1.7.2 + appwrite/appwrite:1.7.3 ``` For one-click setups, check out the [installation docs](https://appwrite.io/docs/self-hosting). diff --git a/src/routes/blog/post/email-otp-auth-sveltekit/+page.markdoc b/src/routes/blog/post/email-otp-auth-sveltekit/+page.markdoc index 9d15528f7..c6dfdfb1a 100644 --- a/src/routes/blog/post/email-otp-auth-sveltekit/+page.markdoc +++ b/src/routes/blog/post/email-otp-auth-sveltekit/+page.markdoc @@ -42,7 +42,7 @@ docker run -it --rm \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --entrypoint="install" \ - appwrite/appwrite:1.7.2 + appwrite/appwrite:1.7.3 ``` 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: diff --git a/src/routes/blog/post/planetscale-databases-alternative/+page.markdoc b/src/routes/blog/post/planetscale-databases-alternative/+page.markdoc index aa1e70d11..0b346a7e2 100644 --- a/src/routes/blog/post/planetscale-databases-alternative/+page.markdoc +++ b/src/routes/blog/post/planetscale-databases-alternative/+page.markdoc @@ -70,7 +70,7 @@ docker run -it --rm \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --entrypoint="install" \ - appwrite/appwrite:1.7.2 + appwrite/appwrite:1.7.3 ``` We have a dedicated [self-hosting guide](/docs/advanced/self-hosting) in our docs for more info. diff --git a/src/routes/docs/advanced/self-hosting/+page.markdoc b/src/routes/docs/advanced/self-hosting/+page.markdoc index 6984bef05..c2e96f92f 100644 --- a/src/routes/docs/advanced/self-hosting/+page.markdoc +++ b/src/routes/docs/advanced/self-hosting/+page.markdoc @@ -35,7 +35,7 @@ docker run -it --rm \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --entrypoint="install" \ - appwrite/appwrite:1.7.2 + appwrite/appwrite:1.7.3 ``` {% /tabsitem %} @@ -46,7 +46,7 @@ docker run -it --rm ^ --volume //var/run/docker.sock:/var/run/docker.sock ^ --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^ --entrypoint="install" ^ - appwrite/appwrite:1.7.2 + appwrite/appwrite:1.7.3 ``` ## Powershell ```powershell @@ -54,7 +54,7 @@ docker run -it --rm ` --volume /var/run/docker.sock:/var/run/docker.sock ` --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ` --entrypoint="install" ` - appwrite/appwrite:1.7.2 + appwrite/appwrite:1.7.3 ``` {% /tabsitem %} {% /tabs %} diff --git a/src/routes/docs/advanced/self-hosting/update/+page.markdoc b/src/routes/docs/advanced/self-hosting/update/+page.markdoc index f7c703474..d7af605b9 100644 --- a/src/routes/docs/advanced/self-hosting/update/+page.markdoc +++ b/src/routes/docs/advanced/self-hosting/update/+page.markdoc @@ -39,7 +39,7 @@ docker run -it --rm \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --entrypoint="upgrade" \ - appwrite/appwrite:1.7.2 + appwrite/appwrite:1.7.3 ``` ## CMD @@ -49,7 +49,7 @@ docker run -it --rm ^ --volume //var/run/docker.sock:/var/run/docker.sock ^ --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^ --entrypoint="upgrade" ^ - appwrite/appwrite:1.7.2 + appwrite/appwrite:1.7.3 ``` ## PowerShell @@ -59,7 +59,7 @@ docker run -it --rm ` --volume /var/run/docker.sock:/var/run/docker.sock ` --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ` --entrypoint="upgrade" ` - appwrite/appwrite:1.7.2 + appwrite/appwrite:1.7.3 ``` This will pull the `docker-compose.yml` file for the new version and perform the installation. diff --git a/static/install/compose b/static/install/compose index 4a3537d8e..af1f0c578 100644 --- a/static/install/compose +++ b/static/install/compose @@ -32,7 +32,7 @@ services: - appwrite appwrite: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 container_name: appwrite <<: *x-logging restart: unless-stopped @@ -170,7 +170,7 @@ services: appwrite-console: <<: *x-logging container_name: appwrite-console - image: appwrite/console:6.0.8 + image: appwrite/console:6.0.11 restart: unless-stopped networks: - appwrite @@ -190,7 +190,7 @@ services: - traefik.http.routers.appwrite_console_https.tls=true appwrite-realtime: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: realtime container_name: appwrite-realtime <<: *x-logging @@ -233,7 +233,7 @@ services: - _APP_LOGGING_CONFIG appwrite-worker-audits: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-audits <<: *x-logging container_name: appwrite-worker-audits @@ -259,7 +259,7 @@ services: - _APP_LOGGING_CONFIG appwrite-worker-webhooks: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-webhooks <<: *x-logging container_name: appwrite-worker-webhooks @@ -287,7 +287,7 @@ services: - _APP_LOGGING_CONFIG appwrite-worker-deletes: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-deletes <<: *x-logging container_name: appwrite-worker-deletes @@ -350,7 +350,7 @@ services: - _APP_EMAIL_CERTIFICATES appwrite-worker-databases: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-databases <<: *x-logging container_name: appwrite-worker-databases @@ -376,7 +376,7 @@ services: - _APP_LOGGING_CONFIG appwrite-worker-builds: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-builds <<: *x-logging container_name: appwrite-worker-builds @@ -444,7 +444,7 @@ services: - _APP_DOMAIN_SITES appwrite-worker-certificates: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-certificates <<: *x-logging container_name: appwrite-worker-certificates @@ -479,7 +479,7 @@ services: - _APP_LOGGING_CONFIG appwrite-worker-functions: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-functions <<: *x-logging container_name: appwrite-worker-functions @@ -518,7 +518,7 @@ services: - _APP_LOGGING_CONFIG appwrite-worker-mails: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-mails <<: *x-logging container_name: appwrite-worker-mails @@ -552,7 +552,7 @@ services: - _APP_OPTIONS_FORCE_HTTPS appwrite-worker-messaging: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-messaging <<: *x-logging container_name: appwrite-worker-messaging @@ -603,7 +603,7 @@ services: - _APP_STORAGE_WASABI_BUCKET appwrite-worker-migrations: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-migrations <<: *x-logging container_name: appwrite-worker-migrations @@ -637,7 +637,7 @@ services: - _APP_MIGRATIONS_FIREBASE_CLIENT_SECRET appwrite-task-maintenance: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: maintenance <<: *x-logging container_name: appwrite-task-maintenance @@ -674,7 +674,7 @@ services: - _APP_MAINTENANCE_RETENTION_SCHEDULES appwrite-task-stats-resources: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 container_name: appwrite-task-stats-resources entrypoint: stats-resources <<: *x-logging @@ -703,7 +703,7 @@ services: - _APP_STATS_RESOURCES_INTERVAL appwrite-worker-stats-resources: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-stats-resources container_name: appwrite-worker-stats-resources <<: *x-logging @@ -731,7 +731,7 @@ services: - _APP_STATS_RESOURCES_INTERVAL appwrite-worker-stats-usage: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: worker-stats-usage container_name: appwrite-worker-stats-usage <<: *x-logging @@ -759,7 +759,7 @@ services: - _APP_USAGE_AGGREGATION_INTERVAL appwrite-task-scheduler-functions: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: schedule-functions container_name: appwrite-task-scheduler-functions <<: *x-logging @@ -784,7 +784,7 @@ services: - _APP_DB_PASS appwrite-task-scheduler-executions: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: schedule-executions container_name: appwrite-task-scheduler-executions <<: *x-logging @@ -809,7 +809,7 @@ services: - _APP_DB_PASS appwrite-task-scheduler-messages: - image: appwrite/appwrite:1.7.2 + image: appwrite/appwrite:1.7.3 entrypoint: schedule-messages container_name: appwrite-task-scheduler-messages <<: *x-logging