From 2dd3b1dcdfc91b9ec8fd4d23bc2dab0984cd66b9 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 2 Apr 2024 11:22:18 -0700 Subject: [PATCH] Run update.sh --- bash/README.md | 2 +- geonetwork/README.md | 2 +- odoo/README.md | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bash/README.md b/bash/README.md index ab49759d8..7a0e5fc49 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20240325`, `devel`, `devel-20240325-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/aaf9f95d5b78cffae86501876f31fa989b6ac5ab/devel/Dockerfile) +- [`devel-20240401`, `devel`, `devel-20240401-alpine3.19`, `devel-alpine3.19`](https://github.com/tianon/docker-bash/blob/524f0baff9a921cf8099421f629bed6d4872cb04/devel/Dockerfile) - [`5.2.26`, `5.2`, `5`, `latest`, `5.2.26-alpine3.19`, `5.2-alpine3.19`, `5-alpine3.19`, `alpine3.19`](https://github.com/tianon/docker-bash/blob/3eae20ac57eaeb63ef9e438b67bfc135a948995a/5.2/Dockerfile) - [`5.1.16`, `5.1`, `5.1.16-alpine3.19`, `5.1-alpine3.19`](https://github.com/tianon/docker-bash/blob/a3f660ae2fcc3153c697520ef4e08da800578064/5.1/Dockerfile) - [`5.0.18`, `5.0`, `5.0.18-alpine3.19`, `5.0-alpine3.19`](https://github.com/tianon/docker-bash/blob/e78939e417c6efbfd55e48c80088bdbbae29fd66/5.0/Dockerfile) diff --git a/geonetwork/README.md b/geonetwork/README.md index 4e269b3dc..114578033 100644 --- a/geonetwork/README.md +++ b/geonetwork/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/Dockerfile) +- [`3.12.11`, `3.12`, `3`](https://github.com/geonetwork/docker-geonetwork/blob/faf221905720b5ebc904b5db8329be70e2028050/3.12.11/Dockerfile) - [`3.12.11-postgres`, `3.12-postgres`, `3-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/de27e28bd62ce359bae1940caf83fadc8d5108ac/3.12.11/postgres/Dockerfile) - [`4.2.9`, `4.2`](https://github.com/geonetwork/docker-geonetwork/blob/9d0986dbc5a86e183599575e098f95f2f58e46cd/4.2.9/Dockerfile) - [`4.4.3`, `4.4`, `4`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/692f3d2851d6fc7e2482291774b19a856eae43f8/4.4.3/Dockerfile) diff --git a/odoo/README.md b/odoo/README.md index a964ba9a2..dfed34494 100644 --- a/odoo/README.md +++ b/odoo/README.md @@ -112,7 +112,7 @@ The default configuration file for the server (located at `/etc/odoo/odoo.conf`) $ docker run -v /path/to/config:/etc/odoo -p 8069:8069 --name odoo --link db:db -t odoo ``` -Please use [this configuration template](https://github.com/odoo/docker/blob/master/16.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. +Please use [this configuration template](https://github.com/odoo/docker/blob/master/17.0/odoo.conf) to write your custom configuration as we already set some arguments for running Odoo inside a Docker container. You can also directly specify Odoo arguments inline. Those arguments must be given after the keyword `--` in the command-line, as follows @@ -156,7 +156,7 @@ The simplest `docker-compose.yml` file would be: version: '3.1' services: web: - image: odoo:16.0 + image: odoo:17.0 depends_on: - db ports: @@ -175,7 +175,7 @@ If the default postgres credentials does not suit you, tweak the environment var version: '3.1' services: web: - image: odoo:16.0 + image: odoo:17.0 depends_on: - mydb ports: @@ -203,7 +203,7 @@ Here's a last example showing you how to version: '3.1' services: web: - image: odoo:16.0 + image: odoo:17.0 depends_on: - db ports: @@ -248,7 +248,7 @@ Odoo images are updated on a regular basis to make them use recent releases (a n Suppose you created a database from an Odoo instance named old-odoo, and you want to access this database from a new Odoo instance named new-odoo, e.g. because you've just downloaded a newer Odoo image. -By default, Odoo 16.0 uses a filestore (located at `/var/lib/odoo/filestore/`) for attachments. You should restore this filestore in your new Odoo instance by running +By default, Odoo 16.0+ uses a filestore (located at `/var/lib/odoo/filestore/`) for attachments. You should restore this filestore in your new Odoo instance by running ```console $ docker run --volumes-from old-odoo -p 8070:8069 --name new-odoo --link db:db -t odoo @@ -256,7 +256,7 @@ $ docker run --volumes-from old-odoo -p 8070:8069 --name new-odoo --link db:db - # License -View [license information](https://raw.githubusercontent.com/odoo/odoo/14.0/LICENSE) for the software contained in this image. +View [license information](https://github.com/odoo/odoo/blob/master/LICENSE) for the software contained in this image. As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).