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

29 lines
1020 B
YAML

# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
# 🌍 https://thealtstack.com
# 💡 Open-source deployment templates for modern self-hosting.
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
version: '3.8'
services:
affine:
image: toeverything/affine-graphql:latest
container_name: affine
restart: unless-stopped
ports:
- "3010:3010"
environment:
- DATABASE_URL=postgres://affine:affine@db:5432/affine
db:
image: postgres:15-alpine
container_name: affine-db
restart: unless-stopped
environment:
- POSTGRES_USER=affine
- POSTGRES_PASSWORD=affine
- POSTGRES_DB=affine