Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rakibtg/docker-web-gui

A simple web based GUI for managing Docker containers and images
https://github.com/rakibtg/docker-web-gui

docker docker-dashboard docker-management-tool

Last synced: about 2 months ago
JSON representation

A simple web based GUI for managing Docker containers and images

Awesome Lists containing this project

README

        

# Docker Dashboard

## A simple GUI interface for Docker Containers


Docker Web Interface Project - A simple GUI interface for Docker

|


Explore containers log

|


List of groups

|
| --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |

|


List of groups

|


List of images

|


Disk cleanup's

|
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |

## Features

- Instantly start/stop, restart, delete and see the logs of a docker container.
- Filter containers by their running status.
- Create groups of docker container.
- Bulk action on container based on group.
- Live system consumption stat for active docker containers.
- Run or delete an image.
- Prune Docker images.
- Prune Docker containers.
- Prune Docker volumes.
- Prune Docker systems.
- No need to use the terminal for common tasks.

## Start the app

Before you follow below steps to start the app, make sure you have `node` and `npm` installed in your system.

- Clone the repository
```
git clone [email protected]:rakibtg/docker-web-gui.git
```
- Change directory
```
cd ./docker-web-gui
```
- Run `app.js`, it will automatically install all the [node modules](https://github.com/rakibtg/docker-web-gui/blob/master/backend/package.json) for you if not installed already.
```
node app.js
```
- Now visit http://localhost:3230/

## Using Docker

You can run this application through a docker container, but it only works in **MacOS**. You can use that with/without [**`docker compose`**](https://docs.docker.com/compose/).
Also, the application will be exposed at port http://localhost:3230.

### Without Docker Compose

If you don't have a docker compose, then you can use the following commands:

- To build the image:
```
docker build . -t docker-web-gui
```
- To run the image:
```
docker run -p 3230:3230 -v /usr/local/bin/docker:/usr/local/bin/docker -v /var/run/docker.sock:/var/run/docker.sock docker-web-gui
```

### With Docker Compose

If you already docker compose installed, then simply do this:

```
docker-compose build
docker-compose up
```

### Docker Based Commands

A `Makefile` has been included with this repo. It has following commands:

1. `make up` to build the image and starting `docker-web-gui` container.
2. `make build` to build the image.
3. `make start` to start containers if application has been up already.
4. `make stop` to stop application.
5. `make restart` to restart application.
6. `make build-without-compose` to build the application without _docker compose_.
7. `make run-without-compose` to run the application without _docker compose_.

# Documentations

- [Backend API](https://github.com/rakibtg/docker-web-gui/tree/master/backend)
- [Client](https://github.com/rakibtg/docker-web-gui/tree/master/client)

Developed by [Hasan](https://twitter.com/rakibtg) and [contributors](https://github.com/rakibtg/docker-web-gui/graphs/contributors).