mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	* [wip]run standalone vite * [wip]run standalone vite * some fix (tabler icons, sw, streaming) * fix theme * fix run scripts * favicon * client-assets * cssの読み込み順序とCSP設定の変更 * fix lang change * fix clientManifest * baseを相対パスにしてドメイン直下とサブディレクトリ配下両方に対応 * 色々修正 * 色々修正 * 色々修正 * fix * Revert "client-assets" This reverts commit 582601e90eb771875bdf8aba263da2316a59d01b. # Conflicts: # packages/frontend/vite.config.ts * 色々修正 * fix * fix * add url and proxy to server proxy * Update packages/frontend/src/index.html * wip * Merge remote-tracking branch 'origin/develop' into feat/launch-standalone-frontend # Conflicts: # packages/frontend/src/pages/welcome.entrance.a.vue * Merge remote-tracking branch 'origin/develop' into feat/launch-standalone-frontend # Conflicts: # packages/frontend/src/pages/welcome.entrance.a.vue * fix tabler load * Apply suggestions from code review * Update packages/frontend/src/index.html * fix * fix vite.config.local-dev.ts * fix CONTRIBUTING.md --------- Co-authored-by: FruitRiin <nassii74@gmail.com> Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com> Co-authored-by: 果物リン <fruitriin@riinswork.space> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: ozelot <contact@ozelot.dev>
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			892 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			892 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3"
 | 
						|
 | 
						|
# このconfigは、 dockerでMisskey本体を起動せず、 redisとpostgresql などだけを起動します
 | 
						|
 | 
						|
services:
 | 
						|
  redis:
 | 
						|
    restart: always
 | 
						|
    image: redis:7-alpine
 | 
						|
    ports:
 | 
						|
      - "6379:6379"
 | 
						|
    volumes:
 | 
						|
      - ./redis:/data
 | 
						|
    healthcheck:
 | 
						|
      test: "redis-cli ping"
 | 
						|
      interval: 5s
 | 
						|
      retries: 20
 | 
						|
 | 
						|
  db:
 | 
						|
    restart: always
 | 
						|
    image: postgres:15-alpine
 | 
						|
    ports:
 | 
						|
      - "5432:5432"
 | 
						|
    env_file:
 | 
						|
      - .config/docker.env
 | 
						|
    volumes:
 | 
						|
      - ./db:/var/lib/postgresql/data
 | 
						|
    healthcheck:
 | 
						|
      test: "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"
 | 
						|
      interval: 5s
 | 
						|
      retries: 20
 | 
						|
 | 
						|
#  meilisearch:
 | 
						|
#    restart: always
 | 
						|
#    image: getmeili/meilisearch:v1.3.4
 | 
						|
#    environment:
 | 
						|
#      - MEILI_NO_ANALYTICS=true
 | 
						|
#      - MEILI_ENV=production
 | 
						|
#    env_file:
 | 
						|
#      - .config/meilisearch.env
 | 
						|
#    volumes:
 | 
						|
#      - ./meili_data:/meili_data
 | 
						|
 |