From 5b6bceafa4edc2f6c98491ed4bafb41fad2bbeeb Mon Sep 17 00:00:00 2001 From: Diamantis Sellis Date: Thu, 11 Feb 2021 22:06:01 +0100 Subject: [PATCH] Correct documentation url link, Closes #106 --- docs/tutorial/using-docker-compose/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/using-docker-compose/index.md b/docs/tutorial/using-docker-compose/index.md index 9927500..7db721d 100644 --- a/docs/tutorial/using-docker-compose/index.md +++ b/docs/tutorial/using-docker-compose/index.md @@ -102,8 +102,8 @@ docker run -dp 3000:3000 ` 1. Let's migrate the `-p 3000:3000` part of the command by defining the `ports` for the service. We will use the - [short syntax](https://docs.docker.com/compose/compose-file/#short-syntax-1) here, but there is also a more verbose - [long syntax](https://docs.docker.com/compose/compose-file/#long-syntax-1) available as well. + [short syntax](https://docs.docker.com/compose/compose-file/compose-file-v3/#long-syntax) here, but there is also a more verbose + [long syntax](https://docs.docker.com/compose/compose-file/compose-file-v3/#long-syntax) available as well. ```yaml hl_lines="7 8" version: "3.7"