-
Notifications
You must be signed in to change notification settings - Fork 15
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
Handle Docker Compose configuration entirely with environment variables #282
Open
aromanielloNTIA
wants to merge
31
commits into
master
Choose a base branch
from
all-config-with-env
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
229281a
Use env var SSD_DEVICE to pass SSD to container
aromanielloNTIA ee3b311
Add default SSD_DEVICE=/dev/nvme0n1
aromanielloNTIA 645b034
Configure API container shared memory size with env var
aromanielloNTIA 027b572
remove unnecessary quotes
aromanielloNTIA 4814833
add SSD_DEVICE and API_SHM_SIZE to README
aromanielloNTIA d3c541b
remove testing changes
aromanielloNTIA c795c98
remove redundant environment variable setting
aromanielloNTIA d62ed2d
Merge branch 'master' into all-config-with-env
aromanielloNTIA 340588c
Automatically get SSD_DEVICE
aromanielloNTIA 5aa2503
Merge branch 'all-config-with-env' of https://github.com/ntia/scos-se…
aromanielloNTIA 5875313
Fix SSD_DEVICE default for github actions runner
aromanielloNTIA d804d6d
Use env var SSD_DEVICE to pass SSD to container
aromanielloNTIA c01814a
Add default SSD_DEVICE=/dev/nvme0n1
aromanielloNTIA e4f343d
Configure API container shared memory size with env var
aromanielloNTIA 80e4bd1
remove unnecessary quotes
aromanielloNTIA 4e55d69
Automatically get SSD_DEVICE
aromanielloNTIA eb178f7
add SSD_DEVICE and API_SHM_SIZE to README
aromanielloNTIA b9c5bf9
remove testing changes
aromanielloNTIA e29e015
remove redundant environment variable setting
aromanielloNTIA e6fd715
Fix SSD_DEVICE default for github actions runner
aromanielloNTIA aca1017
merge upstream
aromanielloNTIA 82bc5ed
Fix github action
aromanielloNTIA df2e1dc
Merge branch 'master' into all-config-with-env
aromanielloNTIA 37cc54c
Use "docker compose" in CI
aromanielloNTIA 2f26795
Merge branch 'master' into all-config-with-env
aromanielloNTIA 58612f6
Merge branch 'master' of https://github.com/NTIA/scos-sensor into all…
jhazentia dab8607
Re-add mistakenly removed env variable
aromanielloNTIA cc553d0
Update scos-tekrsa branch for testing
aromanielloNTIA 16b12dd
Do not dynamically generate SSD_DEVICE default
aromanielloNTIA 1879b04
Update scos-tekrsa to 8.1.0
aromanielloNTIA ce9b28f
Merge branch 'master' into all-config-with-env
aromanielloNTIA 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
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
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
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.
I wonder if this would work if the SSD_DEVICE is a SATA device which is then mapped to an nvme device in the container? Perhaps it would be better to use ${SSD_DEVICE} for both then pass the SSD_DEVICE environment variable to scos-actions to get the path?
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.
This has worked when testing using my Linux laptop with a SATA SSD (
/dev/sda
on the host)