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

Configure Feed

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

create hedgedoc

Kohei Watanabe (Apr 13, 2022, 10:15 AM +0900) 659934fe 8ce7e922

+25
+1
hedgedoc/.env
··· 1 + POSTGRES_PASSWORD=84wB5pZH3u4ZCRYyMDiJP_hKcXWUGfSMU9H-fG9dKK0
+24
hedgedoc/compose.yml
··· 1 + services: 2 + app: 3 + image: quay.io/hedgedoc/hedgedoc:1.9.3 4 + environment: 5 + CMD_DB_URL: postgresql://postgres:${POSTGRES_PASSWORD}@db/postgres 6 + CMD_DOMAIN: localhost:3000 7 + CMD_ALLOW_FREEURL: "true" 8 + volumes: 9 + - hedgedoc_data:/hedgedoc/public 10 + ports: ["3000:3000"] 11 + depends_on: 12 + db: 13 + condition: service_healthy 14 + db: 15 + image: postgres:14-alpine 16 + healthcheck: 17 + test: pg_isready -U postgres 18 + environment: 19 + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} 20 + volumes: 21 + - postgres_data_v14:/var/lib/postgresql/data 22 + volumes: 23 + hedgedoc_data: 24 + postgres_data_v14: