From aacdbac9ad6742384c6742ba71fa5bc570a06512 Mon Sep 17 00:00:00 2001 From: f Date: Thu, 11 Jul 2024 11:39:48 -0300 Subject: [PATCH] fix: be specific about when commands are local or remote --- docs/operators/tutorial.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/operators/tutorial.md b/docs/operators/tutorial.md index c9c190f..cdb5429 100644 --- a/docs/operators/tutorial.md +++ b/docs/operators/tutorial.md @@ -32,6 +32,9 @@ You need to keep port `:80` and `:443` free on your server for web proxying to y Docker. ``` +# ssh into your server +ssh + # docker install convenience script wget -O- https://get.docker.com | bash @@ -42,9 +45,12 @@ sudo usermod -aG docker $USER exit ssh -# setup swarm +# back on the server, setup swarm docker swarm init docker network create -d overlay proxy + +# now you can exit and start using abra +exit ``` ??? question "Do you support multiple web proxies?"