Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix docker-compose install #283

Merged
merged 2 commits into from
Aug 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/image_build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ jobs:

- name: Run spark and ElasticSearch
working-directory: ../compose-etl
run: docker-compose up -d spark elasticsearch
run: docker compose up -d spark elasticsearch

- name: Wait for the container to be up and running
run: sleep 60

- name: Checking logs
working-directory: ../compose-etl
run: docker-compose logs
run: docker compose logs

- name: Check all containers
run: docker ps
Expand All @@ -123,7 +123,7 @@ jobs:

- name: Run ETL process
working-directory: ../compose-etl
run: docker-compose run tube bash -c "python run_config.py; python run_etl.py"
run: docker compose run tube bash -c "python run_config.py; python run_etl.py"

- name: Run integrated tests
# Run the tests that require Spark and ElasticSearch
Expand Down
Loading