frostfs-aio/docker-compose.yml
Denis Kirillov 6e4817101d [#52] Support TLS for s3-gw
Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
2024-11-08 13:39:36 +03:00

32 lines
683 B
YAML

---
version: "2.4"
services:
aio:
image: ${AIO_IMAGE}:${AIO_VERSION}
container_name: aio
domainname: frostfs
hostname: aio
restart: always
stop_signal: SIGKILL
healthcheck:
test: curl --fail http://localhost:8083
interval: 2s
retries: 100
start_period: 2s
timeout: 2s
environment:
- LOG_DIR=/var/log
volumes:
- data:/data
- ./wallets:/wallets
ports:
- "8081:8081" # HTTP Gateway
- "30333:30333" # RPC
- "8080:8080" # FrostFS API RPC
- "8084:8084" # S3 Gateway
- "8184:8184" # S3 Gateway with TLS
- "16513:16513" # Control service
volumes:
data: