DO Self-hosted server failed to upgrade with this error "Error response from daemon: client version 1.52 is too new. Maximum supported API version is 1.42".
Upgrading from 1.8.1 to 1.9.0
Please advise.
Error upgrading from 1.8.1 to 1.9.0
anybody encountered this error…?
looks like the client of Docker inside the appwrite image is too new / your docker is too old ?
which version of docker are you using ?
going to try this suggested on other thread: It's because your Docker version is too low. Just specify your docker version in the installer like this: --env DOCKER_API_VERSION=1.43
docker run -it --rm --publish 20080:20080 --env DOCKER_API_VERSION=1.43 --volume /var/run/docker.sock:/var/run/docker.sock --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw --entrypoint="upgrade" appwrite/appwrite:1.9.0
will update
successfully updated to 1.9.0
[SOLVED] Error upgrading from 1.8.1 to 1.9.0
Recommended threads
- hi guys! my site is not accesible in my ...
- 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...