Community Update: Adding controller URL's for NodeJS hosted ZAC instances

Here's the Docker all-in-one-liner that inclues the console:

temporary

docker run --name "myziti" --rm --entrypoint= \
--publish 127.0.0.1:8441:8441 \
--publish 127.0.0.1:8442:8442 \
openziti/ziti-controller:1.3.3 \
    ziti edge quickstart \
    --ctrl-address 127.0.0.1 \
    --ctrl-port 8441 \
    --router-address 127.0.0.1 \
    --router-port 8442 \
    --password ziti123

persistent

mkdir /tmp/myziti;
docker run --name "myziti" --entrypoint= \
--user $(id -u) \
--volume /tmp/myziti:/home/ziggy \
--publish 127.0.0.1:8441:8441 \
--publish 127.0.0.1:8442:8442 \
docker.io/openziti/ziti-controller:1.3.3 \
    ziti edge quickstart \
    --ctrl-address 127.0.0.1 \
    --ctrl-port 8441 \
    --router-address 127.0.0.1 \
    --router-port 8442 \
    --password ziti123 \
    --home /home/ziggy/quickstart

Then, visit https://127.0.0.1:8441/zac/ in your web browser and login your CLI:

ziti edge login 127.0.0.1:8441 -u admin -p ziti123 --yes

compose file: https://get.openziti.io/dock/all-in-one/compose.yml
instructions: ziti/quickstart/docker/all-in-one at v1.3.3 · openziti/ziti · GitHub

1 Like