Replies: 3 comments 2 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I changed to ports 9000 and 9001 and it worked, but after I configured https://xxx to map to http://xxx:9001, clicking 'Login' still sends the request using HTTP, which causes the request to fail. Where can I configure the base URL for the requests? Or is there another solution? |
Beta Was this translation helpful? Give feedback.
2 replies
-
version: '3.8'
services:
rustfs:
image: rustfs/rustfs:latest
container_name: rustfs
ports:
- "9000:9000"
- "9001:9001"
volumes:
- rustfs-data:/data
environment:
- RUSTFS_ROOT_USER=rustfsadmin
- RUSTFS_ROOT_PASSWORD=rustfsadmin
- RUSTFS_ADDRESS=:9000
- RUSTFS_CONSOLE_ADDRESS=:9001
- RUSTFS_CONSOLE_ENABLE=true
- RUSTFS_LOG=warn
restart: unless-stopped
volumes:
rustfs-data:
name: rustfs-data |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
MiniJude
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I tried to deploy it by the following steps, but failed. I can't figure out the reason.
file
docker-compose.yml:services: rustfs: image: quay.io/rustfs/rustfs:latest container_name: rustfs restart: unless-stopped ports: - "7000:7000" # API 端口 - "7001:7001" # Console 端口 volumes: - /mnt/rustfs/data:/data # 数据存储 - /etc/rustfs/rustfs:/config/rustfs:ro # 配置文件 networks: - rustfs-network healthcheck: test: ["CMD", "curl", "-f", "http://localhost:7000/rustfs/health/live"] interval: 30s timeout: 10s retries: 3 networks: rustfs-network: driver: bridgefile:
config.tomlRUSTFS_ROOT_USER=rustfsadmin RUSTFS_ROOT_PASSWORD=rustfsadmin RUSTFS_VOLUMES="/data/rustfs{0...3}" RUSTFS_ADDRESS=":7000" #RUSTFS_SERVER_DOMAINS="play.rustfs.com:7000" RUSTFS_CONSOLE_ENABLE=true RUSTFS_CONSOLE_ADDRESS=":7001" RUSTFS_OBS_CONFIG="/etc/default/obs.toml" RUSTFS_TLS_PATH="/opt/tls"run
cd /mnt/rustfs/anddocker compose up -dlogs:

Beta Was this translation helpful? Give feedback.
All reactions