fmichaud@m***d:~/Documents/Workspace/tmp/x11$ docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
8515f7a409c1 andrewmackrodt/chromium-x11 "/usr/local/bin/dock…" 2 minutes ago Created chromium
As expected the container has no log because it is not started :
fmichaud@m**d:~/Documents/Workspace/tmp/x11$ docker logs chromium
Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:
snap install chromium
Cause
The snap command of related package manager needs snapd daemon to correctly run. However, the snapd process is not running in the container.
Resolution proposal
I propose to use the apt package manager using the repositories of the underlying debian version provided by ppa:savoury1.
Hello @andrewmackrodt !
First, I want to thank you for this impressive work which help me a lot !
I noticed a small bug when starting the container from the chromium-x11 image published on Docker Hub.
Steps to reproduce
My settings
Step 1 - Creating Chromium container from Docker image
I exactly ran the commands from the project's documentation to create a
chromium-x11
container.All seems ok :
As expected the container has no log because it is not started :
Step 2 - Trying to start the container
The container starts then immediately exits :
Cause
The
snap
command of related package manager needssnapd
daemon to correctly run. However, thesnapd
process is not running in the container.Resolution proposal
I propose to use the
apt
package manager using the repositories of the underlying debian version provided byppa:savoury1
.Resources
At your disposal, Kind regards from Paris 🇫🇷.