Skip to content
Wolfgang Hochleitner edited this page Jan 20, 2024 · 16 revisions

Troubleshooting

Here are some common issues you might run into when working with fhooe-web-dock.

Docker Desktop Hangs on Startup

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

Installation of WSL on Older Windows Builds

Installing WSL (Windows Subsystem for Linux) is recommended for the performance of Docker Desktop. Follow these instructions if you need to install it on older Windows versions: Manual installation steps for older versions of WSL

Find Your fhooe-web-dock Installation Directory When the Containers Are Running

You might have installed fhooe-web-dock a long time ago and you forgot where that was on your machine. By using docker inspect you can inspect a running container and get information about it. By filtering out the compose file's working directory, you can easily determine the location of fhooe-web-dock.

Windows PowerShell

If the container is webapp (also works with mariadb or pma):

docker inspect webapp | Select-String working_dir

macOS Terminal & Linux Shell

If the container is webapp (also works with mariadb or pma):

docker inspect webapp | grep working_dir

Example Output

This is example output under Windows:

"com.docker.compose.project.working_dir": "C:\\Users\\MyCurrentUser\\Documents\\GitHub\\fhooe-web-dock",

Example output for macOS:

"com.docker.compose.project.working_dir": "/Users/MyCurrentUser/Documents/GitHub/fhooe-web-dock",