-
-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After Update: "rm: can't remove '/www/html/Modules': Resource busy" error #162
Comments
Looks like you are exporting too many volumes. Try exporting only /data and /www/logs.. |
The error in the first log disappeared but i still cant access the site
After Clearing the Cache i had an error: In ProviderRepository.php line 279: Class "Modules\Checklists\Providers\ChecklistsServiceProvider" not found |
@LoggaRythmus I have the same issue, have you found a solution ? |
Hi there..
Everything was working fine even between updates (just made a couple). If I remove the volumes and only keeps the logs, I'm able to boot freescout again but I lost all my settings. I still have my data around on the host, how can I fix it? Update:
Now I don't see the error message anymore.. Edit: |
Summary
I am using Freescout for a week now and i had to update my environment for an update of a module, it needed the latest freescout version so i updated the docker image to the latest. After that the Website was accessible but not working correctly.
Steps to reproduce
I updated my docker image from 1.17.44 to 1.17.48 after that the website is not accessible "Whoops, looks like something went wrong — check logs in /storage/logs"
What is the expected correct behavior?
Website accessible and working environment.
Relevant logs and/or screenshots
Environment
version: '2'
services:
freescout-app:
image: tiredofit/freescout
container_name: freescout-app
ports:
- 8282:80
links:
- freescout-db
volumes:
### If you want to perform customizations to the source and have access to it, then uncomment this line - This includes modules
#- ./data:/www/html
### Or, if you just want to use Stock Freescout and hold onto persistent files like cache and session use this, one or the other.
- ./data:/data
### If you want to just keep the original source and add additional modules uncomment this line
- ./modules:/www/html/Modules
- ./logs/:/www/logs
environment:
- CONTAINER_NAME=freescout-app
- DB_HOST=freescout-db
- DB_NAME=
- DB_USER=
- DB_PASS=
- APP_NEW_FETCHING_LIBRARY=true
- SITE_URL=
- ADMIN_EMAIL=
- ADMIN_PASS=
- ENABLE_SSL_PROXY=FALSE
- DISPLAY_ERRORS=FALSE
- TIMEZONE=Europe/Berlin
restart: always
freescout-db:
image: tiredofit/mariadb
container_name: freescout-db
volumes:
- ./db:/var/lib/mysql
environment:
- ROOT_PASS=
- DB_NAME=
- DB_USER=
- DB_PASS=
- CONTAINER_NAME=freescout-db
restart: always
freescout-db-backup:
container_name: freescout-db-backup
image: tiredofit/db-backup
links:
- freescout-db
volumes:
- ./dbbackup:/backup
environment:
- CONTAINER_NAME=freescout-db-backup
- DB_HOST=freescout-db
- DB_TYPE=mariadb
- DB_NAME=
- DB_USER=
- DB_PASS=
- DB01_BACKUP_INTERVAL=1440
- DB01_BACKUP_BEGIN=0000
- DB_CLEANUP_TIME=8640
- COMPRESSION=BZ
- MD5=TRUE
restart: always
Possible fixes
The text was updated successfully, but these errors were encountered: