Add production and development docker-compose (#77)

This commit is contained in:
Alex
2022-03-27 15:17:58 -05:00
committed by GitHub
parent dd9c5244fd
commit 041c711cb9
4 changed files with 97 additions and 11 deletions

View File

@@ -1,8 +1,8 @@
dev:
docker-compose -f ./docker/docker-compose.yml up --remove-orphans
docker-compose -f ./docker/docker-compose.dev.yml up --remove-orphans
dev-update:
docker-compose -f ./docker/docker-compose.yml up --build -V --remove-orphans
docker-compose -f ./docker/docker-compose.dev.yml up --build -V --remove-orphans
dev-scale:
docker-compose -f ./docker/docker-compose.yml up --build -V --scale immich_server=3 --remove-orphans
docker-compose -f ./docker/docker-compose.dev.yml up --build -V --scale immich_server=3 --remove-orphans