Local env
Docker version 27.5.1, build 9f9e405
Apple M2 Max
macOS 15.4.1
- Did uninstall according to documentation
- Did a prune of all docker containers, images, and volumes to be safe
- Ran:
TypeScript
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.1
env file attached (all important information redacted)
TL;DR
Issue: After following the documentation to uninstall and prunning Docker components, app installation via `docker run` results in a "failed to fetch" error for Appwrite 1.7.1 on macOS 15.4.1 with Docker version 27.5.1 on an Apple M2 Max chip.
Solution: The error might be due to network-related issues or the availability of the package at the time. Ensure network connectivity and try the installation process again. It's advisable to check Appwrite's official documentation or community forums for any reported temporary issues.Recommended threads
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...
- Delete on cascade from Cloud Function
I'm writing a Python function that deletes a user's main row from a table in my database. This row has relationships with other tables that use cascade deletion...
- 1.9.6 Console handles all array columns ...
When creating or updating a row in the appwrite 1.9.6 web console, the form treats all list columns as a type string. Even if the column is a list of booleans, ...