Dockerfile Image for Odoo v16, v17
- Duplicate one folder version and rename it with the new version
- Change the version in the Dockerfile and in make.sh file
- Build the Docker Image if It Doesn't Exist:
docker build -t docker-odoo:17.0 .
- 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
- 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
- Push the Image to Docker Hub:
docker push gauchocode/docker-odoo:17.0
- 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 the17.0
tag listed.