https://github.com/mecm1993/docker-explorer
:whale: Docker interactive helper
https://github.com/mecm1993/docker-explorer
docker react typescript yarn zeit-now
Last synced: 5 months ago
JSON representation
:whale: Docker interactive helper
- Host: GitHub
- URL: https://github.com/mecm1993/docker-explorer
- Owner: mecm1993
- License: mit
- Created: 2020-04-01T00:55:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T03:21:55.000Z (almost 3 years ago)
- Last Synced: 2025-05-07T06:16:58.525Z (5 months ago)
- Topics: docker, react, typescript, yarn, zeit-now
- Language: TypeScript
- Homepage: https://dockerexplorer.now.sh
- Size: 2.03 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**Docker Explorer**

## Getting Started
### Prerequisites
- [Node](https://nodejs.org/en/)
- [Yarn](https://yarnpkg.com/)
- [Docker](https://www.docker.com/)### Installation
Clone the project
```bash
git clone https://github.com/mecm1993/docker-explorer.git
```#### Yarn
Install the dependencies
```bash
cd docker-explorer
yarn install
```Make sure everything is working
```bash
yarn start
```#### Docker
Create the image
```bash
cd docker-explorer
docker build -t dockerexplorer --rm .
```Run the image
```bash
docker run --itd --rm -p 3000:80 --name dockerexplorer-web dockerexplorer
```#### Docker-Compose
```bash
cd docker-explorer
docker-compose up -d --build
```Note: If everything works as expected, it should be at `https://localhost:3000`.
### Code Style
The project uses [TypeScript ESLint](https://github.com/typescript-eslint/typescript-eslint). To make sure the code works with the format,
```
yarn lint
```## Deployment
It deploys automatically to [Zeit Now](https://zeit.co/home) when changes are pushed to the branches `develop` and `master`.
## Built With
* [React](https://reactjs.org/docs/create-a-new-react-app.html) - JavaScript Library
* [TypeScript](https://www.typescriptlang.org/) - JavaScript typed superset
* [Yarn](https://yarnpkg.com/) - Package Manager
* [BaseWeb](https://baseweb.design/) - UI Framework
* [Zeit Now](https://zeit.co/home) - Cloud Platform## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
## Acknowledgments
This project was inspired by [GitExplorer](https://github.com/summitech/gitexplorer) from [Summitech](https://summitech.ng/) which is an awesome way to learn about Git.