# Common issues ## Windows ### Frontend fails with errors - ensure none of the directories leading to your talemate directory have special characters in them, this can cause issues with the frontend. so no `(1)` in the directory name. ## Docker ### Docker has created `config.yaml` directory If you do not copy the example config to `config.yaml` before running `docker compose up` docker will create a `config` directory in the root of the project. This will cause the backend to fail to start. This happens because we mount the config file directly as a docker volume, and if it does not exist docker will create a directory with the same name. This will eventually be fixed, for now please make sure to copy the example config file before running the docker compose command. ## General ### Running behind reverse proxy with ssl Personally i have not been able to make this work yet, but its on my list, issue stems from some vue oddities when specifying the base urls while running in a dev environment. I expect once i start building the project for production this will be resolved. If you do make it work, please reach out to me so i can update this documentation.