Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
at main 36 lines 750 B view raw
1services: 2 postgres: 3 image: postgres:16-alpine 4 container_name: wisp-postgres 5 restart: unless-stopped 6 environment: 7 POSTGRES_USER: postgres 8 POSTGRES_PASSWORD: postgres 9 POSTGRES_DB: wisp 10 ports: 11 - "5432:5432" 12 volumes: 13 - postgres_data:/var/lib/postgresql/data 14 healthcheck: 15 test: ["CMD-SHELL", "pg_isready -U postgres"] 16 interval: 5s 17 timeout: 5s 18 retries: 5 19 20 redis: 21 image: redis:7-alpine 22 container_name: wisp-redis 23 restart: unless-stopped 24 ports: 25 - "6379:6379" 26 volumes: 27 - redis_data:/data 28 healthcheck: 29 test: ["CMD", "redis-cli", "ping"] 30 interval: 5s 31 timeout: 5s 32 retries: 5 33 34volumes: 35 postgres_data: 36 redis_data: