-
Notifications
You must be signed in to change notification settings - Fork 18
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
feat(web) - add docker compose form #127
Merged
Merged
Conversation
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
… and validation schema
… services to an array in DockerComposeSchema
…umes, and networks
…d update related references
…ervices to objects
…tructure and validation schemas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request includes significant enhancements to the Docker Compose functionality in the web application. The changes primarily focus on adding new components for handling Docker Compose configurations and integrating these components into the existing application structure.
Enhancements to Docker Compose functionality:
web/src/App.tsx
: Added a new route and import for Docker Compose. [1] [2]web/src/components/navbar/navbar.tsx
: Added a new navigation item for Docker Compose.web/src/enums/api.enums.ts
: Added a new enum value for Docker Compose API.web/src/lib/helper.ts
: Added utility functionsconvertKVtoObject
andconvertServicesToObject
to assist with Docker Compose configurations.New components for Docker Compose configurations:
web/src/pages/docker-compose/components/network-fields.tsx
: AddedNetworkFields
component to manage network configurations within Docker Compose.web/src/pages/docker-compose/components/service-build-fields.tsx
: AddedServiceBuildFields
component to manage build configurations for services.web/src/pages/docker-compose/components/service-depends-on-fields.tsx
: AddedServiceDependsOnFields
component to manage service dependencies.web/src/pages/docker-compose/components/service-environment-fields.tsx
: AddedServiceEnvironmentFields
component to manage environment variables for services.web/src/pages/docker-compose/components/service-network-fields.tsx
: AddedServiceNetworkFields
component to manage network settings for services.web/src/pages/docker-compose/components/service-ports-fields.tsx
: AddedServicePortsFields
component to manage port configurations for services.web/src/pages/docker-compose/components/service-volumes-fields.tsx
: AddedServiceVolumesFields
component to manage volume configurations for services.These changes collectively enhance the application's ability to handle Docker Compose configurations, providing a more robust and user-friendly interface for managing containerized applications.