From 04954003c2496ce4d241956f32ad8fb5f9ac9456 Mon Sep 17 00:00:00 2001 From: Jeremy Lin Date: Sat, 5 Nov 2022 13:38:03 -0700 Subject: [PATCH] Updated Using Docker Compose (markdown) --- Using-Docker-Compose.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Using-Docker-Compose.md b/Using-Docker-Compose.md index 996f6dc..f663239 100644 --- a/Using-Docker-Compose.md +++ b/Using-Docker-Compose.md @@ -4,7 +4,7 @@ This example assumes that you have [installed](https://docs.docker.com/compose/install/) Docker Compose, that you have a domain name (e.g., `vaultwarden.example.com`) for your vaultwarden instance, and that it will be publicly accessible. -**Note**: Docker Compose might be run as `docker-compose ...` (with a dash) or `docker compose ...` (with a space), depending on how you have installed Docker Compose. `docker-compose` is the original syntax, when Docker Compose was distributed as a standalone executable. You can still choose to do a [standalone](https://docs.docker.com/compose/install/other/#install-compose-standalone) installation, in which case you would continue to use this syntax. However, Docker currently recommends installing Docker Compose as a Docker plugin, where `compose` becomes a subcommand of `docker`, making the syntax `docker compose ...`. +:warning: Docker Compose might be run as `docker-compose ...` (with a dash) or `docker compose ...` (with a space), depending on how you have installed Docker Compose. `docker-compose` is the original syntax, when Docker Compose was distributed as a standalone executable. You can still choose to do a [standalone](https://docs.docker.com/compose/install/other/#install-compose-standalone) installation, in which case you would continue to use this syntax. However, Docker currently recommends installing Docker Compose as a Docker plugin, where `compose` becomes a subcommand of `docker`, making the syntax `docker compose ...`. Start by making a new directory and changing into it. Next, create the `docker-compose.yml` below, making sure to substitute appropriate values for the `DOMAIN` and `EMAIL` variables.