Skip to content

Commit

Permalink
feat(docker): add command and entrypoint to recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
aleneum committed Dec 5, 2024
1 parent 6750098 commit d223bfc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hive_cli/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ class ComposerService(BaseModel):
volumes: list[str] | None = None
environment: dict | None = None
depends_on: list[str] | None = None
command: list[str] | None = None
entrypoint: list[str] | None = None

class ComposerConfig(BaseModel):
services: dict[str, ComposerService] = {}
Expand Down

0 comments on commit d223bfc

Please sign in to comment.