abillauer
abillauer
I installed a fresh docker config added a new library and got the same behavior.
I spun up a new clean docker. I ran the following: `docker exec -ti codex grep compute_pages /usr/local/lib/python3.12/site-packages/comicbox/config_default.yaml compute_pages: True ` I also ran this just to check: docker exec...
If it helps here is my docker-compose.yml ``` services: codex: env_file: .env image: docker.io/ajslater/codex container_name: codex volumes: - :/config - :/comics:ro ports: - 9810:9810 environment: - PUID=1024 - PGID=100 -...
That could be but the same environment worked on the previous version. I'll try experimenting on the environment side but it is odd the external docker environment would cause the...
No surprise, but same issue in 1.5.1. I also did a docker-compose down and docker system prune -a to force a clean download of the image. Same error.
I rolled back to 1.4.3 and it works as expected. ``` 2024-03-19 06:20:42 UTC INFO Started watching library /comics/test with poll 2024-03-19 06:20:42 UTC INFO Polling /comics/test again in a...
I tried it on a different host machine (a raspberry pi 4) and it works as expected. My initial machine is a Synology NAS with an intel chip. I am...
Same issue still in 1.5.2. I know no reason to assume it would be fixed but I figures it was worth a shot. ``` 2024-03-19 20:00:04 UTC INFO Started watching...
I tried the docker-compose above and it works! The issue only happens if running the docker as a non-root user. If I set the PUID/GUID to 1024/100 on the synology...
In the initial setup the permissions were 775 and the admin user was the owner of both the config and comics directory. I did a chmod -R and a chown...