mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
bb89fa4aab
* Modify docker-compose file using a hyphen for services instead of underscore * Change URL in Nginx setting
90 lines
1.7 KiB
YAML
90 lines
1.7 KiB
YAML
version: "3.8"
|
|
|
|
services:
|
|
immich-server:
|
|
image: immich-server-dev:1.9.0
|
|
build:
|
|
context: ../server
|
|
dockerfile: Dockerfile
|
|
command: npm run start:dev
|
|
expose:
|
|
- "3000"
|
|
volumes:
|
|
- ../server:/usr/src/app
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
|
- /usr/src/app/node_modules
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=development
|
|
depends_on:
|
|
- redis
|
|
- database
|
|
networks:
|
|
- immich-network
|
|
|
|
immich-microservices:
|
|
image: immich-microservices-dev:1.9.0
|
|
build:
|
|
context: ../microservices
|
|
dockerfile: Dockerfile
|
|
command: npm run start:dev
|
|
expose:
|
|
- "3001"
|
|
volumes:
|
|
- ../microservices:/usr/src/app
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
|
- /usr/src/app/node_modules
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=development
|
|
depends_on:
|
|
- database
|
|
networks:
|
|
- immich-network
|
|
|
|
|
|
redis:
|
|
container_name: immich_redis
|
|
image: redis:6.2
|
|
networks:
|
|
- immich-network
|
|
|
|
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
|
|
ports:
|
|
- 5432:5432
|
|
networks:
|
|
- immich-network
|
|
|
|
nginx:
|
|
container_name: proxy_nginx
|
|
image: nginx:latest
|
|
volumes:
|
|
- ./settings/nginx-conf:/etc/nginx/conf.d
|
|
ports:
|
|
- 2283:80
|
|
- 2284:443
|
|
logging:
|
|
driver: none
|
|
networks:
|
|
- immich-network
|
|
depends_on:
|
|
- immich-server
|
|
|
|
networks:
|
|
immich-network:
|
|
volumes:
|
|
pgdata:
|