From 6c07589656dadb4ba87d730c5c4231e15bae0df8 Mon Sep 17 00:00:00 2001 From: Noah Botimer Date: Mon, 6 Nov 2023 12:06:07 -0500 Subject: [PATCH] Supply build as as build args, not at top level This was a simple indentation/typo error --- docker-compose.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4b582ba5..f84caab4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,9 +5,9 @@ services: context: ./ dockerfile: ./lauth/Dockerfile target: development - args: - UID: ${UID:-1000} - GID: ${GID:-1000} + args: + UID: ${UID:-1000} + GID: ${GID:-1000} ports: - "2300:2300" depends_on: @@ -21,9 +21,9 @@ services: context: ./ dockerfile: ./lauth/Dockerfile target: development - args: - UID: ${UID:-1000} - GID: ${GID:-1000} + args: + UID: ${UID:-1000} + GID: ${GID:-1000} volumes: - ./lauth:/lauth/lauth command: ["rspec"]