Skip to main content

a dead-simple backplane for Dockerized applications

Project description

backplane

A simple backplane for your containerized applications.

  • Traefik reverse-proxy for your containers
  • Portainer management dashboard for Docker

Get started

git clone https://gitlab.com/p3r.one/backplane $HOME/.backplane
cd $HOME/.backplane
docker-compose --project-name backplane up -d

You can now visit the dashboards of both services in your browser:

To expose one of your services through Traefik, your service needs to be part of the backplane Docker network and carry a few Traefik-relevant labels:

portainer:
  image: portainer/portainer-ce:2.0.0
  container_name: portainer
  command: -H unix:///var/run/docker.sock
  restart: unless-stopped
  security_opt:
    - no-new-privileges:true
  networks:
    - backplane
  volumes:
    - "/var/run/docker.sock:/var/run/docker.sock:ro"
    - "portainer-data:/data"
  labels:
    - "traefik.enable=true"
    - "traefik.http.routers.portainer.entrypoints=http"
    - "traefik.http.routers.portainer.rule=Host(`portainer.${BACKPLANE_DOMAIN}`)"
    - "traefik.http.routers.traefik.middlewares=compress@file"
    - "traefik.http.routers.portainer.service=portainer"
    - "traefik.http.services.portainer.loadbalancer.server.port=9000"
    - "traefik.docker.network=backplane"

Development

Dependencies

pip install poetry
poetry shell
poetry install
npm i -g standard-version

Build

poetry build

Publish

poetry publish

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

backplane-0.1.14.tar.gz (11.4 kB view hashes)

Uploaded Source

Built Distribution

backplane-0.1.14-py3-none-any.whl (11.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page