diff options
author | Emile <hanemile@protonmail.com> | 2019-10-21 16:15:45 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-10-21 16:15:45 +0200 |
commit | 42fe202d955926934645bc3ca247d900365ea025 (patch) | |
tree | d9660b7ebaa62676846886d72fb6a0bd1fb0cf4f | |
parent | 4e31c0a1364f7cb6dc8bfec8bde82603ccd89d06 (diff) |
more README updates
-rw-r--r-- | README.md | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/README.md b/README.md index 47b6728..855a69b 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,9 @@ docker-compose that can be used to start a circus (note: a digital one...) ## Setup -Execute the `setup.sh` file, it will ask you to configure some stuff. You can -also setup the circus manually, read on for more infos: +You can setup the whole stack manually or using the `setup.sh` file +semi-automatic. If you want to setup the circus automatically, simply execute +the `setup.sh`, but if you want to do it by hand, read on... ### Docker networking @@ -51,9 +52,22 @@ GF_SECURITY_ADMIN_PASSWORD=secret - When starting grafana, you can login as `admin:secret` - You can create a prometheus datasource using the URL `http://prometheus:9090` +### Pull images + +Pull the companion and the vpn container: + +``` +$ docker login registry.darknebu.la +$ docker pull registry.darknebu.la/circus/companion:latest +$ docker pull registry.darknebu.la/circus/vpn:latest +``` + +This has to be done, else the registration container will want to create and run a +companion image, but there won't be one there locally. + ### Opening the circus -start the stack: +Finally, start the stack: ``` $ docker-compose up -d |