-
Notifications
You must be signed in to change notification settings - Fork 5
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
Docker Compose Conversion #25
Conversation
ef6680f
to
df848ca
Compare
This is functional on Linux, but testing on Windows using |
158a6e7
to
93364c8
Compare
This is an issue with pathing in the |
243ad9f
to
92655ed
Compare
6756846
to
24bc83c
Compare
Convert Docker run script to Docker Compose (`docker compose up -d`) Make `adamant_env.sh` executable Add all usage args to `adamant_env.sh` output when run with no args Reword `adamant_env.sh` output to be more approachable to users Change `stop` arg to stop the container rather than remove Remove scripts replaced by `adamant_env.sh` Retain and use `docker_config.sh` for user configuration Add Docker Compose network mode for changes in lasp#24 Apply `compose.yaml` fixes for Windows Rename compose.yaml->compose.yml Update compose.yml to use docker_config.sh vars Improve `adamant_env.sh` input handling Convert remaining `docker` commands to `docker-compose` Fix script `build` arg to function with `docker-compose` Apply fix to to enable `build` and `push`
Apply fixes to `docker/README.md`
Apply fixes to Linux README.md
Expand BASH readlink to apply project name in script
This pull request should follow #24. These changes convert the current Docker scripts into a unified Docker Compose script which manages Docker container operations with arguments such as
start
,stop
,login
,push
,build
, andremove
. The Docker configuration is contained within thecompose.yaml
file and is provided as an argument to thedocker-compose
command contained within the unified script.