-
Notifications
You must be signed in to change notification settings - Fork 23
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.yml refactor #114
docker-compose.yml refactor #114
Conversation
Had to remove depends_on entries from services in order to install. This error typically occurs when a service defined in a Docker Compose file attempts to extend another service that has depends_on attributes. According to Docker Compose's documentation, a service that uses depends_on cannot be extended.
Removed depends_on references. This error typically occurs when a service defined in a Docker Compose file attempts to extend another service that has depends_on attributes. According to Docker Compose's documentation, a service that uses depends_on cannot be extended
Removed depends_on references This error typically occurs when a service defined in a Docker Compose file attempts to extend another service that has depends_on attributes. According to Docker Compose's documentation, a service that uses depends_on cannot be extended
Moves depends_on to main docker.compose.
Moves depends_on to main docker.compose.
Moves depends_on to main docker.compose.
Moves 'depends_on' sections from service definitions to top-level docker-compose.yml https://docs.docker.com/compose/compose-file/05-services/#restrictions
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.
Thank you for this contribution @steven-tomlinson! There is just one small typo to fix then we can get this merged in the repo.
Corrects typo in version number.
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.
Fixed typo in docker-compose.yml
What
Refactor docker-compose to move 'depends_on' settings to top-level docker-compose.yml
Why
Extended services may not use depends_on.
https://docs.docker.com/compose/compose-file/05-services/#restrictions
Known limitations
N/A
Checklist
PR Structure
Thoroughness
Configs and Secrets
values.yaml
file.pr-preview
,dev
,demo
,prd
).values.yaml
file.pr-preview secrets
,dev secrets
,demo secrets
,prd secrets
).Release
develop
ormain
after it's ready for production!Deployment