mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-23 17:25:14 +02:00
33 lines
1.0 KiB
YAML
33 lines
1.0 KiB
YAML
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
|
# 🌍 https://thealtstack.com
|
|
# 💡 Open-source deployment templates for modern self-hosting.
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
appwrite:
|
|
image: appwrite/appwrite:latest
|
|
container_name: appwrite
|
|
restart: unless-stopped
|
|
ports:
|
|
- "80:80"
|
|
environment:
|
|
- _APP_ENV=production
|
|
- _APP_DB_HOST=mariadb
|
|
|
|
mariadb:
|
|
image: mariadb:10.7
|
|
container_name: appwrite-mariadb
|
|
restart: unless-stopped
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=appwrite
|
|
- MYSQL_DATABASE=appwrite
|
|
volumes:
|
|
- appwrite_db_data:/var/lib/mysql
|
|
|
|
volumes:
|
|
appwrite_db_data:
|