-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to update #1
Comments
Hi @jayo2005 , In our docker-compose, we use image "odoo:16" which has tag 16 in the following link: https://hub.docker.com/_/odoo/tags Because this image is still being updated by Odoo team, so we have to pull a new docker image of odoo:16. First you should delete the outdated image on your local machine: # command to delete odoo 16 image
docker rmi odoo:16
# command to list all docker images
docker images Then you run the command again to start a new Odoo instance. Note: to update a running Odoo 16 instance. # jump into the folder created by my command. Eg: odoo-one
cd odoo-one
docker-compose down
docker rmi odoo:16
docker-compose up -d |
Thank you I will try
From: Minh Nguyen ***@***.***>
Sent: Thursday 17 November 2022 09:08
To: minhng92/odoo-16-docker-compose ***@***.***>
Cc: jayo2005 ***@***.***>; Mention ***@***.***>
Subject: Re: [minhng92/odoo-16-docker-compose] How to update (Issue #1)
Hi @jayo2005 <https://github.com/jayo2005> ,
In our docker-compose, we use image "odoo:16" which has tag 16 in the following link: https://hub.docker.com/_/odoo/tags
Because this image is still being updated by Odoo team, so we have to pull a new docker image of odoo:16. First you should delete the outdated image on your local machine:
# command to delete odoo 16 image
docker rmi odoo:16
# command to list all docker images
docker images
Then you run the command again to start a new Odoo instance.
Note: to update a running Odoo 16 instance.
# jump into the folder created by my command. Eg: odoo-one
cd odoo-one
docker-compose down
docker rmi odoo:16
docker-compose up -d
—
Reply to this email directly, view it on GitHub <#1 (comment)> , or unsubscribe <https://github.com/notifications/unsubscribe-auth/ABVQ35J5UPF44NBNL36ALALWIXYVNANCNFSM6AAAAAASCOSHRE> .
You are receiving this because you were mentioned. <https://github.com/notifications/beacon/ABVQ35JBRSI6SPRP7UQUSMDWIXYVNA5CNFSM6AAAAAASCOSHRGWGG33NNVSW45C7OR4XAZNMJFZXG5LFINXW23LFNZ2KUY3PNVWWK3TUL5UWJTSOSPMX6.gif> Message ID: ***@***.*** ***@***.***> >
|
Hi How do we update the ODoo version.
curl -s https://raw.githubusercontent.com/minhng92/odoo-16-docker-compose/master/run.sh | sudo bash -s odoo-one 10016 20016
Is this the latest Odoo 16
The text was updated successfully, but these errors were encountered: