Coder Social home page Coder Social logo

docker-nebula's Introduction

nebula

GitHub

GitHub Workflow Status Docker Pulls Docker Image Size (latest by date) Docker Stars Docker Image Version (latest by date)

Nebula is a scalable overlay networking tool with a focus on performance, simplicity and security. It lets you seamlessly connect computers anywhere in the world. Nebula is portable, and runs on Linux, OSX, and Windows. (Also: keep this quiet, but we have an early prototype running on iOS). It can be used to connect a small number of computers, but is also able to connect tens of thousands of computers.

Supported Architectures

Our images support multiple architectures such as x86-64, arm64 and armhf. We utilise the docker manifest for multi-platform awareness. More information is available from docker here.

Simply pulling buildsociety/nebula should retrieve the correct image for your arch.

Version Tags

This image provides various versions that are available via tags. latest tag usually provides the latest stable version. Others are considered under development and caution must be exercised when using them.

Tag Description
latest Stable Nebula Releases
edge Latest Nebula Releases
v1.2.0 Nebula 1.2.0 Release

Usage

Here are some example snippets to help you get started creating a container.

docker

    docker pull buildsociety/nebula:latest
    docker run -td --cap-add NET_ADMIN -v /path/to/config:/config --name nebula buildsociety/nebula:latest

User documentation for Nebula can be found at https://github.com/slackhq/nebula#readme

Kubernetes Sidecar

---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: ...
spec:
  replicas: 1
  selector:
    matchLabels:
      app: ...
  template:
    metadata:
      labels:
        app: ...
    spec:
      containers:
      - name: ...
      - name: nebula
        image: buildsociety/nebula:v1.2.0
        securityContext:
          capabilities:
            add:
              - NET_ADMIN
        volumeMounts:
        - mountPath: /config/config.yaml
          readOnly: true
          name: nebula-conf
        args: ["-config", "/config/config.yaml" ] 
      volumes:
      - name: nebula-conf
        configMap:
          name: nebula-conf
          items:
            - key: nebula.conf
              path: nebula.conf

Parameters

Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal> respectively. For example, -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 outside the container.

Parameter Function
-v /config Nebula configuration directory.

Support Info

  • Shell access whilst the container is running: docker exec -it nebula /bin/sh
  • To monitor the logs of the container in realtime: docker logs -f nebula
  • container version number
    • docker inspect -f '{{ index .Config.Labels "build_version" }}' nebula
  • image version number
    • docker inspect -f '{{ index .Config.Labels "build_version" }}' buildsociety/nebula

Updating Info

Most of our images are static, versioned, and require an image update and container recreation to update the app inside. We do not recommend or support updating apps inside the container.

An automated process for upgrading your container is available via containrrr/watchtower.

Licence

By using this image, you agree to the Nebula licence

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.