From 1b25464e655429f9cacc4095063e9a387404aefe Mon Sep 17 00:00:00 2001 From: Aleksandr Prusov Date: Mon, 22 Jun 2020 10:37:54 +0300 Subject: [PATCH] Fixed typo in tmpfs example index.md tmpfs example has incorrect yaml syntax --- compose/compose-file/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compose/compose-file/index.md b/compose/compose-file/index.md index ce1d92bfb0..a988c74997 100644 --- a/compose/compose-file/index.md +++ b/compose/compose-file/index.md @@ -1897,10 +1897,10 @@ Mount a temporary file system inside the container. Size parameter specifies the of the tmpfs mount in bytes. Unlimited by default. ```yaml - - type: tmpfs - target: /app - tmpfs: - size: 1000 +- type: tmpfs + target: /app + tmpfs: + size: 1000 ``` ### ulimits