Skip to content

Commit

Permalink
docker-compose-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
molu8bits committed May 28, 2022
1 parent b79e29a commit 0050bfd
Showing 1 changed file with 24 additions and 23 deletions.
47 changes: 24 additions & 23 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
services:
s3bucketexporter:
image: docker.io/molu8bits/s3bucket_exporter:0.3
restart: always
ports:
- "9655:9655"
environment:
S3_ENDPOINT: https://s3.us-east-1.amazonaws.com
LISTEN_PORT: ":9655"
S3_ACCESS_KEY: ABCD12345678
S3_SECRET_KEY: mySecretKey
S3_NAME: MyS3Endpoint2
S3_REGION: us-east-1
S3_DISABLE_SSL: False
S3_DISABLE_ENDPOINT_HOST_PREFIX: True
S3_FORCE_PATH_STYLE: True
LOG_LEVEL: Info
healthcheck:
test: curl -s -f http://localhost:9655/metrics
timeout: 30s
interval: 2m
retries: 3
start_period: 30s
version: "3.5"
services:
s3bucketexporter:
image: docker.io/molu8bits/s3bucket_exporter:0.3
restart: always
ports:
- "9655:9655"
environment:
S3_ENDPOINT: https://s3.us-east-1.amazonaws.com
LISTEN_PORT: ":9655"
S3_ACCESS_KEY: ABCD12345678
S3_SECRET_KEY: mySecretKey
S3_NAME: MyS3Endpoint2
S3_REGION: us-east-1
S3_DISABLE_SSL: "False"
S3_DISABLE_ENDPOINT_HOST_PREFIX: "True"
S3_FORCE_PATH_STYLE: "True"
LOG_LEVEL: Info
healthcheck:
test: curl -s -f http://localhost:9655/metrics
timeout: 30s
interval: 2m
retries: 3
start_period: 30s

0 comments on commit 0050bfd

Please sign in to comment.