We currently only need switches for the acceptance tests, so don't provision any access points or gateways.
15 lines
346 B
YAML
15 lines
346 B
YAML
---
|
|
services:
|
|
unifi:
|
|
image: "jacobalberty/unifi:${UNIFI_VERSION:-latest}"
|
|
init: true
|
|
restart: "always"
|
|
user: "unifi"
|
|
environment:
|
|
UNIFI_STDOUT: "true"
|
|
ports:
|
|
- "${UNIFI_HTTP_PORT:-8080}:8080/tcp"
|
|
- "${UNIFI_HTTPS_PORT:-8443}:8443/tcp"
|
|
volumes:
|
|
- "./scripts/init.d:/usr/local/unifi/init.d:ro"
|