-
Notifications
You must be signed in to change notification settings - Fork 4
Home
Here are some common issues you might run into when working with fhooe-web-dock.
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".
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
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.
If the container is webapp
(also works with mariadb
or pma
):
docker inspect webapp | Select-String working_dir
If the container is webapp
(also works with mariadb
or pma
):
docker inspect webapp | grep working_dir
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",