GithubHelp home page GithubHelp logo

network_manager's Introduction

Network Manager

Network manager is a tool developed to simplify the task of monitoring all your services and containers.

Deployment with docker

Make sure you have exposed the Docker API through tcp

Docker

docker run -d \
  --name network_manager \
  --network host \
  -p 5000:5000 \
  -v $(pwd)/data:/app/data \
  -e DOCKER_HOST={IP_TO_DOCKER_MACHINE} \
  frogoman/network_manager:latest

Docker compose

version: '3'
services:
  network_manager:
    image: frogoman/network_manager:latest
    container_name: network_manager
    network_mode: "host"
    ports:
      - "5000:5000"
    volumes:
      - ./data:/app/data
    environment:
      - DOCKER_HOST={IP_TO_DOCKER_MACHINE} # Replace with IP:Port for Docker API

Local instalation

To install the project and run it bare bones in a system follow:

0 - Make sure you have exposed the Docker API through tcp

1 - Clone the repository

git clone https://github.com/Frogoman/PFG-Network_Manager

2 - Go to the project directory

  cd PFG-Network_Manager

3 - Install requirements

  pip install -r requirements.txt

4 - Add the .env file with the DOCKER_HOST variable pointing to the tcp connection for the Docker API

5 - Run the project

  flask run --host=0.0.0.0

Environment Variables

To run this project, you will need to add the following environment variables to your .env file

DOCKER_HOST : Address to tcp connection to the Docker API

Roadmap

  • Add Proxmox support

  • Allow the user to create new containers from the interface

  • Add functionality for multiple color themes

network_manager's People

Contributors

frogoman avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.