Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

USE_SSL=false does not work #8

Open
MickL opened this issue May 6, 2020 · 3 comments
Open

USE_SSL=false does not work #8

MickL opened this issue May 6, 2020 · 3 comments

Comments

@MickL
Copy link

MickL commented May 6, 2020

error listing buckets: Get "https://localhost:4572/": dial tcp 127.0.0.1:4572: connect: connection refused

With:

  s3-manager:
    image: mastertinner/s3manager
    ports:
      - 8002:8080
    environment:
      - ACCESS_KEY_ID=abc
      - SECRET_ACCESS_KEY=def
      - REGION=eu-central-1
      - ENDPOINT=localhost:4572
      - PORT=8080
      - USE_SSL=false
@MickL MickL changed the title USE_SSL=false does not work USE_SSL=false does not work May 6, 2020
@MickL
Copy link
Author

MickL commented May 13, 2020

@mastertinner Could you take a look maybe? :)

@cloudlena
Copy link
Owner

@MickL, can you try the docker-compose.yml example with docker-compose up? That one works for me with USE_SSL=false...

@MickL
Copy link
Author

MickL commented Jun 17, 2020

I think it works, I replaced localhost with the name of the other image (localstack) but now I get:

s3-manager_1 | 2020/06/17 12:48:34 GET /buckets 29.8724ms
s3-manager_1 | 2020/06/17 12:48:34 error parsing template files: open web/template/layout.html.tmpl: no such file or directory

docker-compose.yml:

localstack:
    image: localstack/localstack
    ports:
      - 4569:4569
      - 4572:4572
      - 8000:8080
    environment:
      - SERVICES=dynamodb:4569,s3:4572
      - PORT_WEB_UI=8080
      - DATA_DIR=/tmp/localstack/data
      - DEFAULT_REGION:eu-central-1
    volumes:
      - ${TMPDIR:-/tmp/localstack}:/tmp/localstack
  s3-manager:
    image: mastertinner/s3manager
    ports:
      - 8002:8080
    depends_on:
      - localstack
    links:
      - localstack
    environment:
      - ACCESS_KEY_ID=abc
      - SECRET_ACCESS_KEY=def
      - REGION=eu-central-1
      - ENDPOINT=localstack:4572
      - PORT=8080
      - USE_SSL=false

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants