Edsol / odoo-10-arm64v8

create a odoo10 dockerfile from source code for arm64 architecture (Mac M1)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

create a odoo10 docker image from source code for arm64 architecture (Mac M1)

  1. get last release from git:

    git clone --depth 1 -b 10.0 git@github.com:odoo/odoo.git

  2. build image:

    docker build -t odoo10:arm64v8 .

To run a container first pull postgres image and run it:

```docker run -d -p 5432:5432 -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:9.5```

then run odoo image:

docker run -p 8069:8069 --name odoo10 --link db:db -t odoo10:arm64v8

Open http://localhost:8069 with browser

About

create a odoo10 dockerfile from source code for arm64 architecture (Mac M1)

License:MIT License


Languages

Language:Dockerfile 63.5%Language:Shell 20.2%Language:Python 16.3%