Skip to content

Commit

Permalink
chore(ci): Update minio data directory for docker compose. (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
fergmac authored Nov 19, 2024
1 parent 7e0e74d commit c46987c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ services:
ports:
- "9000:9000"
volumes:
- /data
- type: tmpfs
target: /tmp/data:/tmp/data
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio1234
MINIO_DATA_DIR: /data
MINIO_DATA_DIR: /tmp/data
entrypoint: /minio-entrypoint.sh
command: server /data
command: server /tmp/data

#############################################################################################
### Minio-Priv ###
Expand All @@ -37,13 +38,14 @@ services:
ports:
- "9001:9001"
volumes:
- /data
- type: tmpfs
target: /tmp/data:/tmp/data
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio1234
MINIO_DATA_DIR: /data
MINIO_DATA_DIR: /tmp/data
entrypoint: /minio-entrypoint.sh
command: server --address :9001 /data
command: server --address :9001 /tmp/data

#############################################################################################
### CrunchyDB ###
Expand Down

0 comments on commit c46987c

Please sign in to comment.