diff --git a/Dockerfile.cockpit b/Dockerfile.cockpit index df69a50..7c03bf2 100644 --- a/Dockerfile.cockpit +++ b/Dockerfile.cockpit @@ -6,6 +6,20 @@ ARG DEBIAN_FRONTEND=noninteractive ENV TZ=Australia/Brisbane + +# Install a shell so we can log in and check the container +RUN apt-get install -y bash + + +# Install apache +RUN apt-get install -y apache2 +systemctl enable apache2 + # Install cockpit RUN apt-get install -y cockpit cockpit-docker +systemctl enable cockpit.socket + + +# Add a user +adduser jryland