Skip to content

Commit

Permalink
AB#156 feat: add minio service to docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannibaratta committed Mar 17, 2024
1 parent 7615a47 commit 8f4e277
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions service/dev-external-deps/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,18 @@ services:
read_only: true
ports:
- 9000:9000

s3:
profiles: [dev, test]
container_name: s3
image: "bitnami/minio:latest"
ports:
- "9010:9000"
- "9011:9001"
environment:
- MINIO_ROOT_USER=developer
- MINIO_ROOT_PASSWORD=SafePassword1!
- MINIO_SCHEME=http
- MINIO_SERVER_URL=http://localhost:9010
- MINIO_DEFAULT_BUCKETS=source-code,plans
- MINIO_APACHE_API_HTTP_PORT_NUMBER= 9000

0 comments on commit 8f4e277

Please sign in to comment.