Change container name to dbstore

This commit is contained in:
Michael Hohn
2024-06-13 18:09:05 -07:00
committed by =Michael Hohn
parent bbb54caaf3
commit 7347779072
3 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View File

@@ -8,7 +8,7 @@ cmd/server/var/
cmd/server/server
# host storage for container
minio-data/
dbstore-data/
postgres-data/
# Scratch space

View File

@@ -50,9 +50,9 @@ services:
networks:
- backend
minio:
dbstore:
image: minio/minio:RELEASE.2024-06-11T03-13-30Z
container_name: minio
container_name: dbstore
ports:
- "9000:9000"
- "9001:9001"
@@ -62,7 +62,7 @@ services:
command: server /data --console-address ":9001"
volumes:
- ./minio-data:/data
- ./dbstore-data:/data
# Remove named volumes to use bind mounts
# volumes:

View File

@@ -25,4 +25,4 @@ mc cp cmd/server/codeql/dbs/google/flatbuffers/google_flatbuffers_db.zip \
$MINIO_ALIAS/$BUCKET_NAME
# Check new diskuse
du -k minio-data
du -k dbstore-data