Skip to content

Commit

Permalink
Docker compose syntax change
Browse files Browse the repository at this point in the history
  • Loading branch information
dgcliff committed Aug 28, 2024
1 parent 801271d commit 78f736a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
- name: Start server
run: |
set -x
docker-compose -f docker-compose.yml -f docker-compose.ci.yml up -d
docker compose -f docker-compose.yml -f docker-compose.ci.yml up -d
- name: Create database and migrate
run: |
docker-compose exec -T web bundle exec rake db:create
docker-compose exec -T web bundle exec rake db:migrate
docker compose exec -T web bundle exec rake db:create
docker compose exec -T web bundle exec rake db:migrate
- name: Wait until available
run: dockerize -wait http://localhost:3000 -timeout 1m
- uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.149
0.0.150

0 comments on commit 78f736a

Please sign in to comment.