Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 932 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 932 Bytes

About this Repo

Dockerfile Image for Odoo v16, v17

How create a new image

v17> Needs python > 3.9

  1. Duplicate one folder version and rename it with the new version
  2. Change the version in the Dockerfile and in make.sh file
  3. Build the Docker Image if It Doesn't Exist:
docker build -t docker-odoo:17.0 .
  1. Tag Your Docker Image: Docker Hub identifies images by their repository name, which is usually formatted as username/repository:tag.
docker tag docker-odoo:17.0 gauchocode/docker-odoo:17.0
  1. Log In to Docker Hub (If you don't have an account you should create a Docker Hub Account in https://hub.docker.com/)
docker login
  1. Push the Image to Docker Hub:
docker push gauchocode/docker-odoo:17.0
  1. Verify the Image on Docker Hub: After the push is complete, go to your Docker Hub account, and you should see the docker-odoo repository with the 17.0 tag listed.