Files
altstack-data/docker-deploy/open/docker-compose.yml
2026-04-19 08:36:29 +00:00

25 lines
879 B
YAML

# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
# 🌍 https://thealtstack.com
# 💡 Open-source deployment templates for modern self-hosting.
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
version: '3.8'
services:
open:
image: python:3.10
container_name: open
restart: unless-stopped
command: pip install -r requirements.txt && python main.py
ports:
- "8080:8080"
environment:
- PYTHONUNBUFFERED=1
volumes:
- open_data:/app
volumes:
open_data: