docker-web-gui
docker-web-gui copied to clipboard
A simple web based GUI for managing Docker containers and images
There is no use of the host's docker binary inside the alpine image - it will nnot be runnable. Instead docker and python need to be added via apk.
- The web gui is up. - Dockers are running. - docker ps lists a few containers - docker image ls shows a bunch of images The Web GUI is...
Bumps [semver](https://github.com/npm/node-semver) to 7.5.4 and updates ancestor dependency [react-scripts](https://github.com/facebook/create-react-app/tree/HEAD/packages/react-scripts). These dependencies need to be updated together. Updates `semver` from 5.5.0 to 7.5.4 Release notes Sourced from semver's releases. v7.5.4 7.5.4...
Bumps [tough-cookie](https://github.com/salesforce/tough-cookie) to 4.1.3 and updates ancestor dependency [react-scripts](https://github.com/facebook/create-react-app/tree/HEAD/packages/react-scripts). These dependencies need to be updated together. Updates `tough-cookie` from 2.4.3 to 4.1.3 Release notes Sourced from tough-cookie's releases. 4.1.3 Security...
Is there a reason this can't be expanded to support other operating systems?
#### Environment MacOS Monterey 12.6 node v16.0.0 npm 7.10.0 #### Cannot start the app ``` $ node app.js ``` #### Error log ``` npm ERR! gyp ERR! node -v v16.0.0...
Resolved #50 updated `Dockerfile` ```Dockerfile FROM node:alpine WORKDIR /src RUN apk add --no-cache python3 py3-pip build-base ADD ./backend /src/backend ADD ./client /src/client ADD ./app.js /src/app.js RUN cd /src/backend && npm...
I want to use this project on a server to monitor containers that I run on it, this allows to reach the api even when the host is not `localhost`.
current restpath assumes the host machine and the machine accessing the webpage are on the same machine and when the same page is used to access the host machine URL...