WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at atb-44-reply-count-fix 23 lines 475 B view raw
1# docker-compose for SQLite deployments (no external database required). 2# 3# Usage: 4# docker compose -f docker-compose.sqlite.yml up 5# 6# The existing docker-compose.yml (PostgreSQL) is unchanged. 7services: 8 appview: 9 build: . 10 environment: 11 DATABASE_URL: file:/data/atbb.db 12 NODE_ENV: production 13 env_file: 14 - .env 15 volumes: 16 - atbb_data:/data 17 ports: 18 - "80:80" 19 restart: unless-stopped 20 21volumes: 22 atbb_data: 23 driver: local