This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 422
Remove docker-compose from devstack #1172
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
dfb7318
feat: replace docker-compose with docker compose
00cae13
fixup!: Makefile
ccc66a1
fixup!: reqs
6ca1517
Merge branch 'master' into rsgraber/20230831-rm-docker-compose
9022c8b
fixup!: fix tests
84a5c4a
Merge branch 'master' into rsgraber/20230831-rm-docker-compose
9a08e5e
fixup!: add insights analyticsapi and coursegraph provisioning tests
c0264a4
temp: branch
15f7ee0
fixup!: add docker-compose to install
e081d90
fixup!: this time with symlinks
bb1e35e
fixup!: no coursegraph
08dca91
fixup!: with pip install
f0067ad
fixup!: also lms
dd485e2
fixup!: no extra install
0f852db
fixup!: spaces
5438319
fixup!: comment
4e4981d
fixup!: comment
cfc8f17
fixup!: bad comment. no donut
d25b1d7
fixup!: brew install docker compose?
dfa75d9
fixup!: brew install docker compose?
b7f7457
fixup!: more getting started
96c75bd
fixup!: document more
e4870d7
fixup!: Update developing_on_named_release_branches.rst
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,15 +48,17 @@ jobs: | |
sudo apt update | ||
sudo apt install docker-ce containerd.io | ||
docker version | ||
docker-compose --version | ||
docker compose --version | ||
|
||
# Note: we cannot use Docker Desktop because it has not been licensed for use in GithubActions | ||
- name: Docker installation - Mac | ||
if: ${{ matrix.os.name == 'mac' }} | ||
run: | | ||
brew install lima docker | ||
brew install lima docker docker-compose | ||
limactl start --name=default template://docker | ||
echo "DOCKER_HOST=unix:///Users/runner/.lima/default/sock/docker.sock" >> $GITHUB_ENV | ||
mkdir -p ~/.docker/cli-plugins | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is where the docker compose plugin is made discoverable |
||
ln -sfn /usr/local/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose | ||
|
||
- name: Install Python dependencies | ||
run: make requirements | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
os: | ||
- ubuntu-20.04 # Ubuntu 20.04 "Focal Fossa" | ||
python-version: [ '3.8' ] | ||
services: [ discovery+lms+forum ,registrar+lms, ecommerce+lms, edx_notes_api+lms, credentials+lms, xqueue] | ||
services: [ discovery+lms+forum ,registrar+lms, ecommerce+lms, edx_notes_api+lms, credentials+lms, xqueue, analyticsapi+insights+lms] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add analytics and insights to provisioning tests |
||
fail-fast: false # some services can be flaky; let others run to completion even if one fails | ||
|
||
steps: | ||
|
@@ -48,7 +48,7 @@ jobs: | |
sudo apt update | ||
sudo apt install docker-ce containerd.io | ||
docker version | ||
docker-compose --version | ||
docker compose --version | ||
|
||
- name: free up disk space | ||
run: sudo apt remove --purge -y ghc-* azure-cli google-cloud-sdk hhvm llvm-* dotnet-* powershell mono-* php* ruby* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[inform] this spaced version also works with podman