Skip to content

Commit

Permalink
apacheGH-43933: [CI] Remove docker-compose warnings (apache#43934)
Browse files Browse the repository at this point in the history
### Rationale for this change

Remove `docker-compose` warnings to avoid confusion when running `docker-compose` and see them appear at the top. The two warnings are about:

- `PYTHON_IMAGE_TAG` not having a default value in `.env`
- `version` in `docker-compose.yml` is obsolete and should be removed.

### What changes are included in this PR?

- Add a `PYTHON_IMAGE_TAG` default value in `.env`
- Remove `version` from `docker-compose.yml`

### Are these changes tested?

Yes, the warnings are removed with these changes.

### Are there any user-facing changes?
 No.

* GitHub Issue: apache#43933

Authored-by: Lysandros Nikolaou <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
  • Loading branch information
lysnikolaou authored Sep 3, 2024
1 parent 6ce2af7 commit c455d6b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ NUMBA=latest
NUMPY=latest
PANDAS=latest
PYTHON=3.8
PYTHON_IMAGE_TAG=3.8
R=4.4
SPARK=master
TURBODBC=latest
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@
#
# See more in cpp/build-support/run-test.sh::print_coredumps

version: '3.5'

x-common: &common
GITHUB_ACTIONS:

Expand Down

0 comments on commit c455d6b

Please sign in to comment.