mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-23 17:25:14 +02:00
25 lines
879 B
YAML
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:
|