プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

create docmost

Kohei Watanabe (Jul 30, 2024, 6:16 PM +0900) 785fe1a1 772eb9f5

+29
+29
docmost/compose.yml
··· 1 + services: 2 + docmost: 3 + image: docmost/docmost:latest 4 + depends_on: 5 + - db 6 + - redis 7 + environment: 8 + APP_URL: http://localhost:3000 9 + APP_SECRET: "${APP_SECRET}" 10 + DATABASE_URL: postgresql://docmost:${POSTGRES_PASSWORD}@db:5432/docmost?schema=public 11 + REDIS_URL: redis://redis:6379 12 + ports: 13 + - "3000:3000" 14 + volumes: 15 + - ./docmost:/app/data/storage 16 + db: 17 + image: postgres:16-alpine 18 + environment: 19 + POSTGRES_DB: docmost 20 + POSTGRES_USER: docmost 21 + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} 22 + restart: unless-stopped 23 + volumes: 24 + - ./db_data:/var/lib/postgresql/data 25 + redis: 26 + image: redis:7.2-alpine 27 + restart: unless-stopped 28 + volumes: 29 + - ./redis_data:/data