Browse Source
Updated container launch commands (#1989)
* Updated container launch commands
* one more occurrence
---------
Co-authored-by: Bernd Storath <999999bst@gmail.com>
pull/1864/merge
Kirill Dvoretskov
4 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
9 additions and
9 deletions
-
docs/content/advanced/migrate/from-14-to-15.md
-
docs/content/examples/tutorials/basic-installation.md
-
docs/content/examples/tutorials/caddy.md
-
docs/content/examples/tutorials/traefik.md
|
|
@ -34,10 +34,10 @@ If you are using `docker run` |
|
|
|
docker stop wg-easy |
|
|
|
``` |
|
|
|
|
|
|
|
If you are using `docker-compose` |
|
|
|
If you are using `docker compose` |
|
|
|
|
|
|
|
```shell |
|
|
|
docker-compose down |
|
|
|
docker compose down |
|
|
|
``` |
|
|
|
|
|
|
|
### Start new container |
|
|
|
|
|
@ -33,7 +33,7 @@ Follow the Docs here: <https://docs.docker.com/engine/install/> and install Dock |
|
|
|
|
|
|
|
```shell |
|
|
|
cd /etc/docker/containers/wg-easy |
|
|
|
sudo docker-compose up -d |
|
|
|
sudo docker compose up -d |
|
|
|
``` |
|
|
|
|
|
|
|
## Setup Firewall |
|
|
@ -56,8 +56,8 @@ To update `wg-easy` to the latest version, run: |
|
|
|
|
|
|
|
```shell |
|
|
|
cd /etc/docker/containers/wg-easy |
|
|
|
sudo docker-compose pull |
|
|
|
sudo docker-compose up -d |
|
|
|
sudo docker compose pull |
|
|
|
sudo docker compose up -d |
|
|
|
``` |
|
|
|
|
|
|
|
## Auto Update |
|
|
|
|
|
@ -67,7 +67,7 @@ wg-easy.example.com { |
|
|
|
...and start it with: |
|
|
|
|
|
|
|
```shell |
|
|
|
sudo docker-compose up -d |
|
|
|
sudo docker compose up -d |
|
|
|
``` |
|
|
|
|
|
|
|
## Adapt the docker composition of `wg-easy` |
|
|
@ -96,7 +96,7 @@ networks: |
|
|
|
...and restart it with: |
|
|
|
|
|
|
|
```shell |
|
|
|
sudo docker-compose up -d |
|
|
|
sudo docker compose up -d |
|
|
|
``` |
|
|
|
|
|
|
|
You can now access `wg-easy` at [https://wg-easy.example.com](https://wg-easy.example.com) and start the setup. |
|
|
|
|
|
@ -141,7 +141,7 @@ sudo docker network create traefik |
|
|
|
## Start traefik |
|
|
|
|
|
|
|
```shell |
|
|
|
sudo docker-compose up -d |
|
|
|
sudo docker compose up -d |
|
|
|
``` |
|
|
|
|
|
|
|
You can no access the Traefik dashboard at `https://traefik.$example.com$` with the credentials you set in `traefik_dynamic.yml`. |
|
|
@ -178,7 +178,7 @@ networks: |
|
|
|
|
|
|
|
```shell |
|
|
|
cd /etc/docker/containers/wg-easy |
|
|
|
sudo docker-compose up -d |
|
|
|
sudo docker compose up -d |
|
|
|
``` |
|
|
|
|
|
|
|
You can now access `wg-easy` at `https://wg-easy.$example.com$` and start the setup. |
|
|
|