Skip to content
Martin Harrer edited this page Mar 21, 2023 · 16 revisions

Troubleshooting

Docker Desktop hangs on startup

If Docker Desktop does not start, try to reset to factory defaults. Click the "bug" icon in the menu and scroll down to the button "Reset to factory defaults"

Installation of WSL on older Windows builds

Installion of WSL

Installing Docker on M1 MAC

Which images work on several CPU architectures and a work around you can find here

JetBrains Window does not show up on main screen

If you use more then one screen, Jetbrains sometimes does not switch back to the main screen, when the monitor is disconnected. To bring The Jetbrains Window back on the main screen there is still only a workaround available.

WORKAROUND: It's possible to activate IDE window by clicking on the taskbar, then press Alt+Space to invoke the window menu, then press Down arrow twice to select the Move item, then press Enter to select it, then press left/right/up/down arrows to start moving the window. When the moving is activated with the arrows, you can also use a mouse to bring the window back to the main screen.

Source

Get the path of a docker-compose.yml for an running container

Powershell

docker inspect webapp | Select-String compose

Result

"com.docker.compose.config-hash": "e7c3ea4457b997850be746ba3c7384f44f445ca64c10bdd36118e5e9bf3882d8", "com.docker.compose.container-number": "1", "com.docker.compose.depends_on": "", "com.docker.compose.image": "sha256:119fd0485f7e4212205d9515671c3449693dd6762937cd0fcf50c9acf64f7854", "com.docker.compose.oneoff": "False", "com.docker.compose.project": "fhooe-web-dock", "com.docker.compose.project.config_files": "C:\Users\p20137\Docker\fhooe-web-dock\docker-compose.yml", "com.docker.compose.project.working_dir": "C:\Users\p20137\Docker\fhooe-web-dock", "com.docker.compose.service": "php-apache", "com.docker.compose.version": "2.15.1",

Clone this wiki locally