From 292fba88e4d2092ac6fc0bc7730145b77a3bae20 Mon Sep 17 00:00:00 2001 From: Kevin Su <49348667+WKSu@users.noreply.github.com> Date: Tue, 2 Nov 2021 21:07:14 +0100 Subject: [PATCH] Revert --- Docker-server-installation.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Docker-server-installation.md b/Docker-server-installation.md index 0c25cee..301331a 100644 --- a/Docker-server-installation.md +++ b/Docker-server-installation.md @@ -39,13 +39,6 @@ sudo docker run -t -i -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/triliu 1. Test to see that the docker image is running with `docker ps` 2. Access the trilium by opening a browser and go to `127.0.0.1:8080` -### Local Network only -This command will run the container so that it is only available on your local network. You can access it from outside by using a VPN like WireGuard to get into your own network first. Where `[local-ip]` is the local IP of the device you are using (often in the 192.168.x.x range). - -~~~~ -sudo docker run -t -i -p [local-ip]:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:[VERSION] -~~~~ - ### Available anywhere This will run the container as a background process and will be available from any IP address ~~~~