mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-23 17:25:14 +02:00
🤖 Sentinel: Synchronization from aa-humaaan/thealtstack
This commit is contained in:
38
docker-deploy/firnflow/docker-compose.yml
Normal file
38
docker-deploy/firnflow/docker-compose.yml
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
||||
# 🌍 https://thealtstack.com
|
||||
# 💡 Open-source deployment templates for modern self-hosting.
|
||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
firnflow:
|
||||
image: rust:latest
|
||||
container_name: firnflow
|
||||
restart: unless-stopped
|
||||
command: cargo run
|
||||
ports:
|
||||
- "8080:8080"
|
||||
environment:
|
||||
- RUST_LOG=info
|
||||
volumes:
|
||||
- firnflow_data:/data
|
||||
|
||||
minio:
|
||||
image: minio/minio:latest
|
||||
container_name: minio
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "9000:9000"
|
||||
- "9001:9001"
|
||||
environment:
|
||||
- MINIO_ROOT_USER=minioadmin
|
||||
- MINIO_ROOT_PASSWORD=minioadmin
|
||||
volumes:
|
||||
- minio_data:/data
|
||||
|
||||
volumes:
|
||||
firnflow_data:
|
||||
minio_data:
|
||||
Reference in New Issue
Block a user