Install docker desktop Set it to work with WSL2 (suppose to be the default) Then the rest of the process is the same
As @Binyamin mentioned, WSL2 is required to install doceker on windows machine, attaching link here: https://docs.docker.com/desktop/install/windows-install/
Is there a way to do this with Windows Server 2019 which do not have WSL2 Support?
It's best to create a new post instead of posting in an old thread by someone else
Docker Desktop would not be possible on Windows Server 2019, but you can install the Docker Engine and use it https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce#windows-server-1
Yes I did that but then I get the error that there is no windows/arm64 manifest
PS C:\Windows\system32> 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.3.8
Unable to find image 'appwrite/appwrite:1.3.8' locally
1.3.8: Pulling from appwrite/appwrite
docker: no matching manifest for windows/amd64 10.0.19045 in the manifest list entries.
See 'docker run --help'.
I guess that with docker desktop it uses the underlying wsl2, but even with an ubuntu installed on the machine it does still throw the same error.
Will do that π€
You'll need to switch to the Linux containers mode
Here's how you can do that https://computingforgeeks.com/how-to-run-docker-containers-on-windows-server-2019/#:~:text=Step%204%3A%20Running%20Linux%20Containers
I've tried this and screwed my whole docker π I'll try again...
Go for it π π
You can use something like portainer instead of docker desktop too
Recommended threads
- Custom Domains
Hi All, Should be a quick config issue. I'm setting up custom domains on the hosted version. I have verified the domain with the CNAME but appwrite isn't gene...
- Type Mismatch in AppwriteException
There is a discrepancy in the TypeScript type definitions for AppwriteException. The response property is defined as a string in the type definitions, but in pr...
- What Query's are valid for GetDocument?
Documentation shows that Queries are valid here, but doesn't explain which queries are valid. At first I presumed this to be a bug, but before creating a githu...