Skip to content

arminadm/django-docker-container-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-docker-container-manager

How to Setup

1- Clone the project

2- run docker-compose up --build for setting up

3- run docker-compose exec backend sh -c "python3 manage.py createsuperuser" for creating admin panel user

4- (optional) run docker-compose exec backend sh -c "python3 manage.py generate_fake_data" for generating fake data so you can have better testing experience

5- (optional) run docker-compose exec backend sh -c "python3 manage.py test" for testing the endpoints functionality

How to use

CRUD operations are available by

http://127.0.0.1:8000/manage_apps/
(get: list of apps, post: create new app)
http://127.0.0.1:8000/manage_apps/detail/(int:pk)/
(get: retrieve single app info, put: update selected app info, delete: delete selected app)

Create a container from an app

by the following url you can run a container from the selected app (using app's id as pk in url)
http://127.0.0.1:8000/run_container/(int:pk)/

Important Note:

you can create more than one container from the same app (container name will automatically get changed for preventing name conflict)

Monitoring the containers

use http://127.0.0.1:8000/container_monitoring/ for getting info about running or exited containers (id, name, status, args, started_at, finished_at)

Important Note:

this endpoint will display all the containers which are available in both HOST and the ones which are created by this app (GUEST)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published