Skip to content

Commit

Permalink
Supply build as as build args, not at top level
Browse files Browse the repository at this point in the history
This was a simple indentation/typo error
  • Loading branch information
botimer committed Nov 6, 2023
1 parent 4d0b515 commit 6c07589
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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"]
Expand Down

0 comments on commit 6c07589

Please sign in to comment.