fix(fileimport service): s3 is not required by fileimport service (#924)

Fileimport service retreives blobs via the server storage API, and not directly from s3.  Fileimport
service no longer requires information or credentials about s3.
This commit is contained in:
Iain Sproat
2022-08-15 15:49:10 +01:00
committed by GitHub
parent 19b59fa4d8
commit da7dafe819
4 changed files with 2 additions and 31 deletions
@@ -111,12 +111,5 @@ services:
environment:
DEBUG: 'fileimport-service:*'
PG_CONNECTION_STRING: 'postgres://speckle:speckle@postgres/speckle'
WAIT_HOSTS: 'postgres:5432, minio:9000'
S3_ENDPOINT: 'http://minio:9000'
S3_ACCESS_KEY: 'minioadmin'
S3_SECRET_KEY: 'minioadmin'
S3_BUCKET: 'speckle-server'
S3_REGION: '' # optional, defaults to 'us-east-1'
WAIT_HOSTS: 'postgres:5432'
SPECKLE_SERVER_URL: 'http://speckle-server:3000'