mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* feat: create immich-proxy container to remove default nginx config setup * infra: make production docker-compose point at release builds for stability * Fixed nginx config file was overriden by default.conf in nginx container; Fixed docker-compose.dev; Added additional tag 'release' for tagging after release build in Github Action Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
		
			
				
	
	
		
			85 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3.8"
 | 
						|
 | 
						|
services:
 | 
						|
  immich-server:
 | 
						|
    image: altran1502/immich-server:staging
 | 
						|
    entrypoint: ["/bin/sh", "./start-server.sh"]
 | 
						|
    volumes:
 | 
						|
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
 | 
						|
    env_file:
 | 
						|
      - .env
 | 
						|
    environment:
 | 
						|
      - NODE_ENV=production
 | 
						|
    depends_on:
 | 
						|
      - redis
 | 
						|
      - database
 | 
						|
    restart: always
 | 
						|
 | 
						|
  immich-microservices:
 | 
						|
    image: altran1502/immich-server:staging
 | 
						|
    entrypoint: ["/bin/sh", "./start-microservices.sh"]
 | 
						|
    volumes:
 | 
						|
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
 | 
						|
    env_file:
 | 
						|
      - .env
 | 
						|
    environment:
 | 
						|
      - NODE_ENV=production
 | 
						|
    depends_on:
 | 
						|
      - redis
 | 
						|
      - database
 | 
						|
    restart: always
 | 
						|
 | 
						|
  immich-machine-learning:
 | 
						|
    image: altran1502/immich-machine-learning:staging
 | 
						|
    entrypoint: ["/bin/sh", "./entrypoint.sh"]
 | 
						|
    volumes:
 | 
						|
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
 | 
						|
    env_file:
 | 
						|
      - .env
 | 
						|
    environment:
 | 
						|
      - NODE_ENV=production
 | 
						|
    depends_on:
 | 
						|
      - database
 | 
						|
    restart: always
 | 
						|
 | 
						|
  immich-web:
 | 
						|
    image: altran1502/immich-web:staging
 | 
						|
    entrypoint: ["/bin/sh", "./entrypoint.sh"]
 | 
						|
    env_file:
 | 
						|
      - .env
 | 
						|
    restart: always
 | 
						|
 | 
						|
  redis:
 | 
						|
    container_name: immich_redis
 | 
						|
    image: redis:6.2
 | 
						|
    restart: always
 | 
						|
 | 
						|
  database:
 | 
						|
    container_name: immich_postgres
 | 
						|
    image: postgres:14
 | 
						|
    env_file:
 | 
						|
      - .env
 | 
						|
    environment:
 | 
						|
      POSTGRES_PASSWORD: ${DB_PASSWORD}
 | 
						|
      POSTGRES_USER: ${DB_USERNAME}
 | 
						|
      POSTGRES_DB: ${DB_DATABASE_NAME}
 | 
						|
      PG_DATA: /var/lib/postgresql/data
 | 
						|
    volumes:
 | 
						|
      - pgdata:/var/lib/postgresql/data
 | 
						|
    restart: always
 | 
						|
 | 
						|
  immich-proxy:
 | 
						|
    container_name: immich_proxy
 | 
						|
    image: altran1502/immich-proxy:staging
 | 
						|
    ports:
 | 
						|
      - 2283:80
 | 
						|
      - 2284:443
 | 
						|
    logging:
 | 
						|
      driver: none
 | 
						|
    depends_on:
 | 
						|
      - immich-server
 | 
						|
    restart: always
 | 
						|
 | 
						|
volumes:
 | 
						|
  pgdata:
 |