From 68fde7d165507982e7837729d1629c1070ccf9e4 Mon Sep 17 00:00:00 2001 From: Kirill Dvoretskov <65371121+kiruxaspb@users.noreply.github.com> Date: Mon, 30 Jun 2025 09:01:26 +0300 Subject: [PATCH] Updated container launch commands (#1989) * Updated container launch commands * one more occurrence --------- Co-authored-by: Bernd Storath <999999bst@gmail.com> --- docs/content/advanced/migrate/from-14-to-15.md | 4 ++-- docs/content/examples/tutorials/basic-installation.md | 6 +++--- docs/content/examples/tutorials/caddy.md | 4 ++-- docs/content/examples/tutorials/traefik.md | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/content/advanced/migrate/from-14-to-15.md b/docs/content/advanced/migrate/from-14-to-15.md index d57d7939..c0e2bd16 100644 --- a/docs/content/advanced/migrate/from-14-to-15.md +++ b/docs/content/advanced/migrate/from-14-to-15.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 diff --git a/docs/content/examples/tutorials/basic-installation.md b/docs/content/examples/tutorials/basic-installation.md index 80d03d0b..8fc2ea17 100644 --- a/docs/content/examples/tutorials/basic-installation.md +++ b/docs/content/examples/tutorials/basic-installation.md @@ -33,7 +33,7 @@ Follow the Docs here: 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 diff --git a/docs/content/examples/tutorials/caddy.md b/docs/content/examples/tutorials/caddy.md index 16d406e1..9fc53226 100644 --- a/docs/content/examples/tutorials/caddy.md +++ b/docs/content/examples/tutorials/caddy.md @@ -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. diff --git a/docs/content/examples/tutorials/traefik.md b/docs/content/examples/tutorials/traefik.md index 3e37bee6..aeb9a319 100644 --- a/docs/content/examples/tutorials/traefik.md +++ b/docs/content/examples/tutorials/traefik.md @@ -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.