Although I believe I am running docker as the Odoo Docker Hub "How To > Start an Odoo Instance" (https://hub.docker.com/_/odoo) describes, the --link arg still complains when you try to run the factory odoo image and try link the db container to the odoo container:
My setup:
MacOS 10.13.6
Docker version 20.10.0, build 7287ab3
Odoo Docker Hub Image tagged 13.0 pulled and available
Successfully running pulled postgres container which shows its name as "db"
The attempt to docker run the odoo image tagged odoo:13.0 below, (mildly sanitized for posting):
terminal-prompt: docker images
REPOSITORY TAG CREATED SIZE
odoo 13.0 6 days ago 1.21GB
postgres 10 7 days ago 200MB
terminal-prompt: docker container ls
IMAGE CREATED STATUS PORTS NAMES
postgres:10 4 hours ago Up 4 hours 1234/tcp db
terminal-prompt: docker stats
NAME CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS
db 0.00% 47.75MiB / 1.942GiB 2.40% 1.66kB / 0B 36.8MB / 40.8MB 7
terminal-prompt: docker run odoo:13.0 -p 8069:8069 --name odoo --link db:db -t odoo
Database connection failure: could not translate host name "db" to address: Name or service not known
Has anyone else successfully run the 13.0 tagged docker image recently?
Thanks in advance.