All Projects β†’ oznu β†’ Docker Unms

oznu / Docker Unms

This image is no longer maintained: https://github.com/oznu/docker-unms/issues/53

Projects that are alternatives of or similar to Docker Unms

Nextcloudpi
πŸ“¦ Build code for NextcloudPi: Raspberry Pi, Odroid, Rock64, Docker, curl installer...
Stars: ✭ 1,340 (+824.14%)
Mutual labels:  raspberry-pi, arm, x86-64, docker-image
Docker Jdownloader
JDownloader 2 Docker Image (Multiarch) - Passed 40M Downloads
Stars: ✭ 85 (-41.38%)
Mutual labels:  raspberry-pi, arm, docker-image
Dockerpi
A Virtualised Raspberry Pi inside a Docker image
Stars: ✭ 1,064 (+633.79%)
Mutual labels:  raspberry-pi, arm, docker-image
Docker Cloudflare Ddns
A small amd64/ARM/ARM64 Docker image that allows you to use CloudFlare as a DDNS / DynDNS Provider.
Stars: ✭ 467 (+222.07%)
Mutual labels:  raspberry-pi, arm, x86-64
Docker Homebridge
Homebridge Docker. HomeKit support for the impatient using Docker on x86_64, Raspberry Pi (armhf) and ARM64. Includes ffmpeg + libfdk-aac.
Stars: ✭ 1,847 (+1173.79%)
Mutual labels:  raspberry-pi, arm, x86-64
Tina
Tina is a teeny tiny, header only, coroutine and job library.
Stars: ✭ 125 (-13.79%)
Mutual labels:  raspberry-pi, arm, x86-64
Raspberrypi tempmon
Raspberry pi CPU temperature monitor with many functions such as logging, GPIO output, graphing, email, alarm, notifications and stress testing. Python 3.
Stars: ✭ 52 (-64.14%)
Mutual labels:  raspberry-pi, arm
Neatcc
A small arm/x86(-64) C compiler
Stars: ✭ 86 (-40.69%)
Mutual labels:  arm, x86-64
Nwjs rpi
[NW.js port for Raspberry Pi] binary compiled for the ARMv6 used in Raspberry Pi (compatible with RPi 2 and RPi 3)
Stars: ✭ 91 (-37.24%)
Mutual labels:  raspberry-pi, arm
Keystone
Keystone assembler framework: Core (Arm, Arm64, Hexagon, Mips, PowerPC, Sparc, SystemZ & X86) + bindings
Stars: ✭ 1,654 (+1040.69%)
Mutual labels:  arm, x86-64
Reverse Engineering
This repository contains some of the executables that I've cracked.
Stars: ✭ 29 (-80%)
Mutual labels:  arm, x86-64
Erika3
ERIKA Enterprise v3 RTOS
Stars: ✭ 98 (-32.41%)
Mutual labels:  arm, x86-64
Nailgun
Nailgun attack on ARM devices.
Stars: ✭ 114 (-21.38%)
Mutual labels:  raspberry-pi, arm
Pi Builder
Extensible tool to build Arch Linux ARM for Raspberry Pi on x86_64 host using Docker
Stars: ✭ 31 (-78.62%)
Mutual labels:  raspberry-pi, arm
Arm Vo
Efficient monocular visual odometry for ground vehicles on ARM processors
Stars: ✭ 115 (-20.69%)
Mutual labels:  raspberry-pi, arm
Raspberry Pi Os
Learning operating system development using Linux kernel and Raspberry Pi
Stars: ✭ 11,000 (+7486.21%)
Mutual labels:  raspberry-pi, arm
Jingos
JingOS - The World’s First Linux-based OS design for Tablets
Stars: ✭ 101 (-30.34%)
Mutual labels:  raspberry-pi, arm
Keypatch
Multi-architecture assembler for IDA Pro. Powered by Keystone Engine.
Stars: ✭ 939 (+547.59%)
Mutual labels:  arm, x86-64
Reko
Reko is a binary decompiler.
Stars: ✭ 942 (+549.66%)
Mutual labels:  arm, x86-64
Mmusiccast
Chromecast emulator that works on any platform. Stream videos from youtube to raspberry pi or any computer with the chromecast protocol.
Stars: ✭ 113 (-22.07%)
Mutual labels:  raspberry-pi, arm

Docker Build Status Travis GitHub release

Docker UNMS

This is an all-in-one Docker image for running the Ubiquiti Network Management System. This image contains all the components required to run UNMS in a single container and uses the s6-overlay for process management.

This image will run on most platforms that support Docker including Docker for Mac, Docker for Windows, Synology DSM and Raspberry Pi boards.

Usage

docker run \
  -p 80:80 \
  -p 443:443 \
  -p 2055:2055/udp \
  -e TZ=<timezone> \
  -v </path/to/config>:/config \
  oznu/unms:latest

Raspberry Pi / ARMv7

This image will also allow you to run UNMS on a Raspberry Pi or other Docker-enabled ARMv7/8 devices by using the armhf tag.

docker run -d --name unms -p 80:80 -p 443:443 -p 2055:2055/udp -v </path/to/config>:/config oznu/unms:armhf

Parameters

The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side.

  • -v </path/to/config>:/config - The persistent data location, the database, certs and logs will be stored here
  • -p 80:80 - Expose the HTTP web server port on the docker host
  • -p 443:443 - Expose the HTTPS and WSS web server port on the docker host
  • -p 2055:2055/udp - Expose the Netflow port on the docker host
  • -e TZ - for timezone information e.g. -e TZ=Europe/London

Optional Settings:

  • -e DEMO=false - Enable UNMS demo mode
  • -e PUBLIC_HTTPS_PORT=443 - This should match the HTTPS port your are exposing to on the docker host
  • -e PUBLIC_WS_PORT=443 - This should match the HTTPS port your are exposing to on the docker host
  • -e SECURE_LINK_SECRET= - Random key for secure link module. Set this to something random.

Limitations

The Docker image, oznu/unms, is not maintained by or affiliated with Ubiquiti Networks. You should not expect any support from Ubiquiti when running UNMS using this image.

  • In-app upgrades will not work. You can upgrade UNMS by downloading the latest version of this image.
  • Device firmware upgrades initiated from UNMS may not work (#7).

Docker Compose

version: '2'
services:
  unms:
    image: oznu/unms:latest  # use "armhf" instead of "latest" for arm devices
    restart: always
    ports:
      - 80:80
      - 443:443
      - 2055:2055/udp
    environment:
      - TZ=Australia/Sydney
    volumes:
      - ./volumes/unms:/config
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].