Alessandro Savino
Alessandro Savino
Hello. I found that on OSX (current 10.13.x version) it is not working unless you put everything on a .hpp file, because the clang compiler is not going to be...
I did some extra work and investigation. Actually, if I only restart the container, it's not enough. I need to remove the printer on the docker-compose service environment variables, the...
Sure. I can share my docker-compose configuration: ``` cups-server: container_name: cups-server image: drpsychick/airprint-bridge restart: unless-stopped hostname: cups.home networks: localnet: ipv4_address: $CUPSSERVER_LOCALNET_IP security_opt: - no-new-privileges:true ports: - "137:137/udp" - "139:139/tcp" -...
I see those messages too. I checked again and I noticed that if I run the docker and the printer is off, then the CUPS server displays the connection as...
Sorry, it took me a while to be able to check all your steps. Also, I apologize for the long post, but I'm trying to help myself but also other...
Actually, I solved one thing and I'm still struggling with the other one. Regarding the null file, it is mandatory to add the -v option to the `lpadmin` (in the...
I guess I solved the mystery. Basically, I noticed that despite any attempt the `/dev/bus/` folder was not updated, despite being in the `device` section of the container. Then, I...
@master-ang did you try what I suggested before? The solution looks fine, but it is still not the final one: after a while, without tracking the issue down, despite the...
> @xavier7179 > > /dev/bus/usb:/dev/bus/usb is working. Now I can restart the printer without restarting the container. Thank you~ > > I hope that @DrPsychick will improve in the next...
Just to check it, is it your configuration in the docker-compose like this: ``` cups: container_name: cups image: drpsychick/airprint-bridge restart: unless-stopped hostname: cups.home privileged: true networks: localnet: ipv4_address: $CUPSSERVER_LOCALNET_IP #security_opt:...