What operation system you have?
[SOLVED] Docker Manifest not found
Votes
0
Replies
24
Participants
Unknown
Messages
25
Rank 2: Process
centos 7
Rank 2: Process
CentOS 7 64bit
Run this to install the compose plugin
$ sudo yum update $ sudo yum install docker-compose-pluginThen run docker compose up -d again
Rank 2: Process
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-pluginSo we can make sure we have all docker needed components?
Rank 2: Process
It seems like the installed docker version is pretty hold
Is this server is production?
Or you're able to change the packages?
Rank 2: Process
yes there are projects running production server.
With other docker containers?
Rank 2: Process
There is only appwrite and there are 2 working projects in it.
Rank 2: Process
only appwrite works on this server.
I mean are the other two projects are docker?
Rank 2: Process
in appwrite.
What I mean are you able to uninstall the old docker packages?
Or do you have any docker containers that run
Rank 2: Process
no other docker containers
Rank 2: Process
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-utilssudo 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
Rank 2: Process
I'll take a backup and try. thanks.
Rank 2: Process
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.
Rank 2: Process
@Binyamin
Cool
Admin
[SOLVED] Docker Manifest not found