minhng92 / odoo-14-docker-compose

Set up Odoo 14 (released 2020) quickly for development/production using Docker Compose.
90 stars 99 forks source link

installing Odoo docker-compose on Raspberry pi #9

Open Shahin-rmz opened 3 years ago

Shahin-rmz commented 3 years ago

Hello, thanks for maintaining the docker containers. I would like to install Odoo 15 or 14 on Raspberry pi. It seems that it is not compatible with Arm structure. Error :

ERROR: no matching manifest for linux/arm64/v8 in the manifest list entries

what can I do? thanks

minhng92 commented 3 years ago

My docker compose is based on the official Odoo Docker image. It's only compatible with amd64 architecture.

You should try installing Odoo from installation package. Check out this link: https://peppe8o.com/raspberry-pi-installing-an-erp-and-crm-with-odoo/

Hope it helps, Minh

Shahin-rmz commented 3 years ago

that's right. The thing is I wanted to install it using docker compose on Raspberry pi, and not on bare metal.

minhng92 commented 3 years ago

Hi @Shahin-rmz ,

Looks like there is no available arm64 docker image for odoo. The only solution is doing it yourself: write Dockerfile which installing Odoo from source inside ARM64, then wrap it with docker-compose as I did.

It'll be a challenge if you are not in advanced with Docker.

Shahin-rmz commented 3 years ago

It'll be a challenge if you are not in advanced with Docker.

right, I'm more in the field of datascience. Not Devops. Try to solve the challenge, would be thankful if you could link some documentation about writing dockerfile and yml file in docker-compose.