Skip to content

Commit aa5d96b

Browse files
authored
github-actions: Migrate from docker-compose v1 to docker compose v2 (#50)
1 parent 77420af commit aa5d96b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ def run(cmd)
5858
end
5959

6060
unless options[:skip_build]
61-
run 'docker-compose build ' \
61+
run 'docker compose build ' \
6262
" --build-arg RUBY_IMAGE=#{RUBY_IMAGE}" \
6363
" --build-arg USER_ID_GROUP=#{USER_ID_GROUP}" \
6464
" --build-arg FRAMEWORKS=#{FRAMEWORKS}" \
6565
" --build-arg VENDOR_PATH=#{VENDOR_PATH}"
6666
exit $?.exitstatus unless $?.success?
6767
end
6868

69-
run 'docker-compose run' \
69+
run 'docker compose run' \
7070
' --rm' \
7171
" specs #{ARGV.join}"
7272

0 commit comments

Comments
 (0)