Skip to content

Commit

Permalink
Improve arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Jun 18, 2024
1 parent ef0aed6 commit 229023d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
context: .
dockerfile: Dockerfile
target: builder_binary
entrypoint: /builder $BUILDER_ARGS
entrypoint: /builder ${BUILDER_ARGS:-}

rootless:
image: metacall/builder_rootless
Expand All @@ -17,7 +17,7 @@ services:
context: .
dockerfile: Dockerfile
target: builder_rootless
entrypoint: /home/user/builder.sh $BUILDER_ARGS
entrypoint: /home/user/builder.sh ${BUILDER_ARGS:-}
security_opt:
- "seccomp=unconfined"
- "apparmor=unconfined"
Expand All @@ -30,10 +30,10 @@ services:
context: .
dockerfile: Dockerfile
target: builder_client
entrypoint: /home/builder.sh $BUILDER_ARGS
entrypoint: /home/builder.sh ${BUILDER_ARGS:-}
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /run/buildkit/buildkitd.sock:/run/buildkit/buildkitd.sock
# - /run/buildkit/buildkitd.sock:/run/buildkit/buildkitd.sock
depends_on:
- buildkit

Expand Down

0 comments on commit 229023d

Please sign in to comment.