Skip to content
This repository was archived by the owner on Aug 12, 2019. It is now read-only.

Commit

Permalink
0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oznu committed Nov 16, 2018
1 parent d65e922 commit cb5504e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Multi-stage build - See https://docs.docker.com/engine/userguide/eng-image/multistage-build
FROM ubnt/unms:0.13.0 as unms
FROM ubnt/unms-netflow:0.13.0 as unms-netflow
FROM ubnt/unms:0.13.1 as unms
FROM ubnt/unms-netflow:0.13.1 as unms-netflow
FROM oznu/s6-node:10.13.0-r2-debian-amd64

ENV DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -43,6 +43,7 @@ RUN mkdir -p /home/app/netflow
COPY --from=unms-netflow /home/app /home/app/netflow

RUN cd /home/app/netflow \
&& rm -rf node_modules \
&& JOBS=$(nproc) npm install --production

# end unms-netflow dockerfile #
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile.raspberry-pi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Multi-stage build - See https://docs.docker.com/engine/userguide/eng-image/multistage-build
FROM ubnt/unms:0.13.0 as unms
FROM ubnt/unms-netflow:0.13.0 as unms-netflow
FROM ubnt/unms:0.13.1 as unms
FROM ubnt/unms-netflow:0.13.1 as unms-netflow
FROM oznu/s6-node:10.13.0-r2-debian-armhf

ENV DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -43,6 +43,7 @@ RUN mkdir -p /home/app/netflow
COPY --from=unms-netflow /home/app /home/app/netflow

RUN cd /home/app/netflow \
&& rm -rf node_modules \
&& JOBS=$(nproc) npm install --production

# end unms-netflow dockerfile #
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Docker UNMS

This is an all-in-one Alpine Linux based Docker image for running the [Ubiquiti Network Management System](https://unms.com/). This image contains all the components required to run [UNMS](https://unms.com/) in a single container and uses the [s6-overlay](https://github.com/just-containers/s6-overlay) for process management.
This is an all-in-one Docker image for running the [Ubiquiti Network Management System](https://unms.com/). This image contains all the components required to run [UNMS](https://unms.com/) in a single container and uses the [s6-overlay](https://github.com/just-containers/s6-overlay) for process management.

This image will run on most platforms that support Docker including [Docker for Mac](https://www.docker.com/docker-mac), [Docker for Windows](https://www.docker.com/docker-windows), Synology DSM and Raspberry Pi boards.

Expand All @@ -18,9 +18,9 @@ docker run \
oznu/unms:latest
```

## Raspberry Pi / ARMv6
## Raspberry Pi / ARMv7

This image will also allow you to run [UNMS](https://unms.com/) on a Raspberry Pi or other Docker-enabled ARMv6/7/8 devices by using the `armhf` tag.
This image will also allow you to run [UNMS](https://unms.com/) 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
Expand Down

0 comments on commit cb5504e

Please sign in to comment.