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

The docker-compose.yaml file is incorrect #819

Open
votdev opened this issue Nov 21, 2023 · 1 comment
Open

The docker-compose.yaml file is incorrect #819

votdev opened this issue Nov 21, 2023 · 1 comment
Labels
kind/bug Something isn't working kind/known issue severity/normal Regular issue, some non-major loss of functionality under specific circumstances triage/next-candidate This could be moved to the next milestone

Comments

@votdev
Copy link
Contributor

votdev commented Nov 21, 2023

With v0.23.0 there need to be done some changes in https://github.com/aquarist-labs/s3gw/blob/s3gw-v0.23/docker-compose.yaml

Rename RGW_SERVICE_URL -> S3GW_SERVICE_URL
Remove

    command:
      - "--rgw-backend-store"
      - "sfs"

Finally it should look like:

---
version: "3.4"
services:
  s3gw:
    image: quay.io/s3gw/s3gw:v0.23.0-rc2
    restart: always
    ports:
      - "7480:7480"
    environment:
      S3GW_DEBUG: high
      RGW_DEFAULT_USER_ACCESS_KEY: "test"
      RGW_DEFAULT_USER_SECRET_KEY: "test"
    volumes:
      - data:/data

  s3gw-ui:
    image: quay.io/s3gw/s3gw-ui:v0.23.0-rc2
    restart: always
    stop_signal: SIGINT
    depends_on:
      - s3gw
    ports:
      - "8080:8080"
    environment:
      S3GW_SERVICE_URL: "http://localhost:3080"

  proxy:
    image: docker.io/nginx:latest
    restart: always
    depends_on:
      - s3gw-ui
    ports:
      - "80:80"
      - "3080:3080"
    volumes:
      - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro

volumes:
  data:
@votdev votdev added the kind/bug Something isn't working label Nov 21, 2023
@votdev votdev self-assigned this Nov 21, 2023
@votdev votdev added this to S3GW Nov 21, 2023
@github-project-automation github-project-automation bot moved this to Backlog in S3GW Nov 21, 2023
@github-actions github-actions bot added the triage/waiting Waiting for triage label Nov 21, 2023
@jecluis
Copy link
Contributor

jecluis commented Nov 21, 2023

there's an on-going submission that aims at fixing the docker-compose.yaml file: https://github.com/aquarist-labs/s3gw/pull/816

@jecluis jecluis linked a pull request Nov 22, 2023 that will close this issue
@jecluis jecluis added this to the v0.24.0 milestone Nov 26, 2023
@jecluis jecluis added priority/1 Should be fixed for next release kind/known issue severity/normal Regular issue, some non-major loss of functionality under specific circumstances and removed triage/waiting Waiting for triage labels Nov 26, 2023
@jecluis jecluis added triage/next-candidate This could be moved to the next milestone and removed priority/1 Should be fixed for next release labels Mar 21, 2024
@jecluis jecluis added this to s3gw Mar 21, 2024
@jecluis jecluis moved this to Backlog in s3gw Mar 21, 2024
@jecluis jecluis removed this from the v0.24.0 milestone Mar 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Something isn't working kind/known issue severity/normal Regular issue, some non-major loss of functionality under specific circumstances triage/next-candidate This could be moved to the next milestone
Projects
Status: Backlog
Development

Successfully merging a pull request may close this issue.

2 participants