Skip to content
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

Fix pre-commit hooks after 3ec203b #435

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deployment-examples/docker-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The CAS (Content Addressable Storage) service is used as a local cache for the N
target: /root
environment:
RUST_LOG: ${RUST_LOG:-warn}
ports:
ports:
[
"50051:50051/tcp",
"127.0.0.1:50061:50061",
Expand Down Expand Up @@ -115,7 +115,7 @@ Worker instances are responsible for executing tasks. They are configured in the

The Docker Compose setup is configured to run all services locally, which may not be suitable for production environments. The scheduler is currently the only single point of failure in the system. If the scheduler service fails, the entire system will be affected.

The Docker Compose setup does not automatically delete old data. This could lead to storage issues over time if not managed properly.
The Docker Compose setup does not automatically delete old data. This could lead to storage issues over time if not managed properly.

If you decide to stop using this setup, you can use `docker-compose down` to stop and remove all the containers. However, in a non-local setup, additional steps may be required to ensure that all data is securely deleted.

Expand Down