frostfs-aio/docker-compose.yml

30 lines
597 B
YAML
Raw Permalink Normal View History

---
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
volumes:
- data:/data
- ./wallets:/wallets
ports:
- "8081:8081" # HTTP Gateway
- "30333:30333" # RPC
- "8080:8080" # FrostFS API RPC
- "8084:8084" # S3 Gateway
- "16513:16513" # Control service
volumes:
data: