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

Remove sudo usage from Google Cloud deployment example #259

Merged
merged 2 commits into from
Apr 10, 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
6 changes: 3 additions & 3 deletions examples/deployments/google-cloud-compute/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ version: "3.9"
services:
server:
container_name: server
image: ghcr.io/chroma-core/chroma:0.3.11
image: ghcr.io/chroma-core/chroma:0.3.14
volumes:
- ./index_data:/index_data
environment:
Expand Down Expand Up @@ -46,7 +46,7 @@ services:
EOF

mkdir config
sudo cat << EOF > config/backup_disk.xml
cat << EOF > config/backup_disk.xml
<clickhouse>
<storage_configuration>
<disks>
Expand All @@ -63,7 +63,7 @@ sudo cat << EOF > config/backup_disk.xml
</clickhouse>
EOF

sudo cat << EOF > config/chroma_users.xml
cat << EOF > config/chroma_users.xml
<clickhouse>
<profiles>
<default>
Expand Down