https://github.com/onero/docker-container-management
Container management for Docker
https://github.com/onero/docker-container-management
container-management docker portainer watchtower
Last synced: 7 months ago
JSON representation
Container management for Docker
- Host: GitHub
- URL: https://github.com/onero/docker-container-management
- Owner: onero
- License: mit
- Created: 2021-04-27T15:32:24.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-27T21:40:58.000Z (almost 3 years ago)
- Last Synced: 2025-01-14T07:12:10.668Z (9 months ago)
- Topics: container-management, docker, portainer, watchtower
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-container-management
Container management for Docker## This project serves a docker container management environment, based on [Watchtower](https://github.com/containrrr/watchtower) and [Portainer](https://github.com/portainer/portainer)
## Requirements
In order to utilize this image, you only need to have the latest version of docker installed!## Usage
1. Download the docker-compose file to the root of your project.
2. Run the following command```
docker compose-up
```This way you will see the output of the container.
The app will be served at
[localhost:9000 ](http://localhost:9000)If you want to run the container without seeing the output simply run:
```
docker-compose up -d
```If you want to attach a shell execute the the following command:
```
docker exec -it {NameOfYouContainer} /bin/sh
```
E.g.
```
docker exec -it myAwesomeApp_ionic_1 /bin/sh
```