You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My problem is the lack of persistence. When I kill the container and restart a new one with the same name, my Firefox profile, bookmakers, etc, are gone.
so that Firefox's data would get saved on the host in /home/mascip/docker-desktop/firefox-data/$container_name. But it does work, because volumes mounted with -v are read-only.
Is there a way to achieve what I want? Am I missing something?
The text was updated successfully, but these errors were encountered:
The solution was to create a data-only docker container for the data, with a /home/docker/.mozilla/firefox volume, which contains my Firefox profile. I also had to solve a tiny permission issue.
Like I said in my other issue, I use Firefox from docker-desktop, like this:
My problem is the lack of persistence. When I kill the container and restart a new one with the same name, my Firefox profile, bookmakers, etc, are gone.
I've tried to add this argument to 'docker run' :
so that Firefox's data would get saved on the host in /home/mascip/docker-desktop/firefox-data/$container_name. But it does work, because volumes mounted with -v are read-only.
Is there a way to achieve what I want? Am I missing something?
The text was updated successfully, but these errors were encountered: