
What operation system you have?

centos 7

CentOS 7 64bit

Run this to install the compose plugin
$ sudo yum update
$ sudo yum install docker-compose-plugin

Then run docker compose up -d
again


That's weird Just to be sure can you run this
sudo yum install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
So we can make sure we have all docker needed components?


It seems like the installed docker version is pretty hold

Is this server is production? Or you're able to change the packages?

yes there are projects running production server.

With other docker containers?

There is only appwrite and there are 2 working projects in it.

only appwrite works on this server.

I mean are the other two projects are docker?

in appwrite.

What I mean are you able to uninstall the old docker packages? Or do you have any docker containers that run

no other docker containers


Okay,
First stop your current docker-compose
So do it on your own risk But this steps should solve the problem
1 Uninstall docker
sudo yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine
- Add docker current repo
sudo yum install -y yum-utils
sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
- Install docker
sudo yum install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
sudo systemctl start docker
Then try to start appwrite with docker compose up -d

I'll take a backup and try. thanks.

thanks. I completely deleted and reinstalled. No problem at the moment
last docker compose exec appwrite migrate
I did the latest migrate and it worked great.

@Binyamin

Cool

[SOLVED] Docker Manifest not found
Recommended threads
- Unable to Create Relation Attribute in A...
Hello, I’m running a self-hosted Appwrite v1.7.4 instance on my server. I want to create a relation attribute between two collections in the console, but the co...
- Having permission issues with imported s...
Hello, I have my self hosted project on a server, and i wanted to import the schema to my local machine dev instance so I used the json file from the server ...
- Bug Report: Dynamic API Keys Cannot Crea...
Reproduction Steps 1. Create an Appwrite function (note: not triggered by a user) 2. Initialize client with dynamic API key parsed from `x-appwrite-key` header...
