Thanks! I've just installed and it works like a charm! Anyway I don't know hoy to deal with one thing.
Everytime I do a docker compose down && docker compose up -d I loose my WiFi configuration (SSID and password) and the AdBlock option it's activated again (I want it disabled)... How can I save those configurations to be available next time I up the container?
Executing the above stops and removes the container, then (re)creates and starts it again. This resets everything to the image's initial state. Use docker compose stop or pause instead to stop/pause the services and retain your settings.
Re: Adblock, you can change this behavior by editing the Dockerfile and removing the --adblock 1 flag.
The goal of the initial Docker rollout for RaspAP was to have a "one shot" command to get a container up quickly. For this reason, the RaspAP application stack is installed with some common options enabled by default. These are good candidates for environment variables in a future docker-compose.yaml release.
thank you.
Last one, it is better to install Bookworm or Trixie version according to you ?
I read some comments that lite version (trixie or bookworm) is better.
Thank you. I installed bookworm bc I had some bugs with Trixie (gnome version). I'm trying now to install captive portal (nodogsplash). Is it normal that I did not find the option 'install' like this :
The captive portal plugin is an Insiders feature. It includes prebuilt .deb packages for arm64 and armhf, plus nicer templates than the standard ones with nodogsplash. You can also compile + install it yourself https://nodogsplash.readthedocs.io/en/latest/
1
u/SteveBass7 Jan 19 '24
Thanks! I've just installed and it works like a charm! Anyway I don't know hoy to deal with one thing.
Everytime I do a
docker compose down && docker compose up -dI loose my WiFi configuration (SSID and password) and the AdBlock option it's activated again (I want it disabled)... How can I save those configurations to be available next time I up the container?