mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	* update deps * fix * wip * wip * wip * Update docker-compose.yml.example * Delete reviewer-lottery.yml * Update RepositoryModule.ts * wip * wip * clean up * update deps * wip * wip
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
version: "3"
 | 
						|
 | 
						|
services:
 | 
						|
  web:
 | 
						|
    build: .
 | 
						|
    restart: always
 | 
						|
    links:
 | 
						|
      - db
 | 
						|
      - redis
 | 
						|
#     - meilisearch
 | 
						|
    depends_on:
 | 
						|
      db:
 | 
						|
        condition: service_healthy
 | 
						|
      redis:
 | 
						|
        condition: service_healthy
 | 
						|
    ports:
 | 
						|
      - "3000:3000"
 | 
						|
    networks:
 | 
						|
      - internal_network
 | 
						|
      - external_network
 | 
						|
    volumes:
 | 
						|
      - ./files:/misskey/files
 | 
						|
      - ./.config:/misskey/.config:ro
 | 
						|
 | 
						|
  redis:
 | 
						|
    restart: always
 | 
						|
    image: redis:7-alpine
 | 
						|
    networks:
 | 
						|
      - internal_network
 | 
						|
    volumes:
 | 
						|
      - ./redis:/data
 | 
						|
    healthcheck:
 | 
						|
      test: "redis-cli ping"
 | 
						|
      interval: 5s
 | 
						|
      retries: 20
 | 
						|
 | 
						|
  db:
 | 
						|
    restart: always
 | 
						|
    image: postgres:15-alpine
 | 
						|
    networks:
 | 
						|
      - internal_network
 | 
						|
    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
 | 
						|
#    networks:
 | 
						|
#      - internal_network
 | 
						|
#    volumes:
 | 
						|
#      - ./meili_data:/meili_data
 | 
						|
 | 
						|
networks:
 | 
						|
  internal_network:
 | 
						|
    internal: true
 | 
						|
  external_network:
 |