mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* Remove unnecessary PG_DATA environement variable from docker-compose.yml There is no need to set the PostgreSQL data directory to the default location, it just adds an additional unnecessary line to the docker-compose file. In addition, the PG_DATA isn't even the correct environment variable name (it should be PGDATA, see: https://hub.docker.com/_/postgres/), so this environment variable was never doing anything to begin with. * Update docker-compose.dev.yml * Update docker-compose.prod.yml * Update docker-compose.test.yml
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3.8"
 | 
						|
 | 
						|
services:
 | 
						|
  immich-server-test:
 | 
						|
    image: immich-server-test
 | 
						|
    build:
 | 
						|
      context: ../server
 | 
						|
      dockerfile: Dockerfile
 | 
						|
      target: builder
 | 
						|
    command: npm run test:e2e
 | 
						|
    expose:
 | 
						|
      - "3000"
 | 
						|
    volumes:
 | 
						|
      - ../server:/usr/src/app
 | 
						|
      - /usr/src/app/node_modules
 | 
						|
    env_file:
 | 
						|
      - .env.test
 | 
						|
    environment:
 | 
						|
      - NODE_ENV=development
 | 
						|
      - TYPESENSE_ENABLED=false
 | 
						|
    depends_on:
 | 
						|
      - immich-redis-test
 | 
						|
      - immich-database-test
 | 
						|
    networks:
 | 
						|
      - immich-test-network
 | 
						|
  immich-redis-test:
 | 
						|
    container_name: immich-redis-test
 | 
						|
    image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3
 | 
						|
    networks:
 | 
						|
      - immich-test-network
 | 
						|
  immich-database-test:
 | 
						|
    container_name: immich-database-test
 | 
						|
    image: postgres:14-alpine@sha256:28407a9961e76f2d285dc6991e8e48893503cc3836a4755bbc2d40bcc272a441
 | 
						|
    env_file:
 | 
						|
      - .env.test
 | 
						|
    environment:
 | 
						|
      POSTGRES_PASSWORD: ${DB_PASSWORD}
 | 
						|
      POSTGRES_USER: ${DB_USERNAME}
 | 
						|
      POSTGRES_DB: ${DB_DATABASE_NAME}
 | 
						|
    volumes:
 | 
						|
      - /var/lib/postgresql/data
 | 
						|
    networks:
 | 
						|
      - immich-test-network
 | 
						|
 | 
						|
networks:
 | 
						|
  immich-test-network:
 |