work >> docker --version
Docker version 29.4.3, build 055a478
work >>
test >> docker --version
Docker version 29.4.3, build 055a478
test >> docker run --name my-postgres -e POSTGRES_USER=myuser -e POSTGRES_PASSWORD=mypassword -e POSTGRES_DB=support_db -p 5432:5432 -d postgres:16
failed to connect to the docker API at npipe:////./pipe/dockerDesktopLinuxEngine; check if the path is correct and if the daemon is running: open //./pipe/dockerDesktopLinuxEngine: The system cannot find the file specified.
test >> docker context ls
NAME DESCRIPTION DOCKER ENDPOINT ERROR
default Current DOCKER_HOST based configuration npipe:////./pipe/docker_engine
desktop-linux * Docker Desktop npipe:////./pipe/dockerDesktopLinuxEngine
test >> docker context use default
default
Current context is now "default"
test >> docker context ls
NAME DESCRIPTION DOCKER ENDPOINT ERROR
default * Current DOCKER_HOST based configuration npipe:////./pipe/docker_engine
desktop-linux Docker Desktop npipe:////./pipe/dockerDesktopLinuxEngine
test >> docker run --name my-postgres -e POSTGRES_USER=myuser -e POSTGRES_PASSWORD=mypassword -e POSTGRES_DB=support_db -p 5432:5432 -d postgres:16
Unable to find image 'postgres:16' locally
16: Pulling from library/postgres
5b4d6ff92fc4: Pull complete
f798658e1236: Pull complete
461af294616f: Pull complete
44621392b385: Pull complete
75dca182fa08: Pull complete
57b073d81a63: Pull complete
2a71ac551ebb: Pull complete
cfc298b98443: Pull complete
293df834a968: Pull complete
b10ca02767ae: Pull complete
3e2c054ac228: Pull complete
df493b5e7907: Pull complete
708048d3de39: Pull complete
b6a8888944fa: Pull complete
70db6c210d5c: Download complete
81bee406aa6e: Download complete
Digest: sha256:4b7183ac05f8ef417db21fd72d71047a4238340c261d3cc3ddb6d579ab5071ae
Status: Downloaded newer image for postgres:16
8a2ec5393c8fe31a3adf3efd1868bf46e974e4d3ac058cfef3af41c0a0c7ec1e
test >>