fix: Enable ssh

This commit is contained in:
Lino Silva
2023-03-26 15:51:28 +01:00
parent a43c1593d9
commit 0ad4fd3945
18 changed files with 285 additions and 3 deletions
+28
View File
@@ -0,0 +1,28 @@
---
- name: Create directory for docker-compose
ansible.builtin.file:
path: /root/docker/immich/
state: directory
mode: "0755"
- name: Copy .env file
template:
src: ".env"
dest: /root/docker/immich/.env
owner: root
group: root
mode: 0755
- name: Copy docker-compose file
template:
src: "docker-compose.yml"
dest: /root/docker/immich/docker-compose.yml
owner: root
group: root
mode: 0755
- name: Run docker-compose
ansible.builtin.shell:
args:
cmd: docker compose up -d
chdir: /root/docker/immich/
+16
View File
@@ -0,0 +1,16 @@
DB_HOSTNAME=immich_postgres
DB_USERNAME=ANVdeo9LyBqXwKwsCZMnSYe4yApjB7mvKtDE9CTTrMaq2tA3Hn
DB_PASSWORD=KfVYJXdmN2jJd8BpU2AMGcJ9t9od4NgQrcRc6g9yeqZAZVYo68
DB_DATABASE_NAME=immich
REDIS_HOSTNAME=immich_redis
UPLOAD_LOCATION=/export/photos/phone-lino
LOG_LEVEL=simple
PUBLIC_LOGIN_PAGE_MESSAGE="Photos"
NODE_ENV=production
IMMICH_WEB_URL=http://immich-web:3000
IMMICH_SERVER_URL=http://immich-server:3001
IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003
TYPESENSE_API_KEY=CmRqRuYpn6KoH4rCVAXaVdKoixvKCMowfjW3JgKQoXKyVPYy8C
TYPESENSE_ENABLED=true
CONFIG_DIR=/data
@@ -0,0 +1,120 @@
version: "3.8"
services:
immich-server:
container_name: immich_server
image: altran1502/immich-server:release
entrypoint: [ "/bin/sh", "./start-server.sh" ]
deploy:
resources:
limits:
cpus: '4'
memory: 4096M
reservations:
cpus: '2'
memory: 2048M
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- database
- typesense
restart: always
immich-microservices:
container_name: immich_microservices
image: altran1502/immich-server:release
entrypoint: [ "/bin/sh", "./start-microservices.sh" ]
deploy:
resources:
limits:
cpus: '4'
memory: 4096M
reservations:
cpus: '2'
memory: 2048M
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- .env
environment:
- NODE_ENV=production
depends_on:
- redis
- database
- typesense
restart: always
typesense:
container_name: immich_typesense
image: typesense/typesense:0.24.0
environment:
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
- TYPESENSE_DATA_DIR=/data
logging:
driver: none
volumes:
- ${CONFIG_DIR}/docker/immich/tsdata:/data
immich-machine-learning:
container_name: immich_machine_learning
image: altran1502/immich-machine-learning:release
deploy:
resources:
limits:
cpus: '4'
memory: 4096M
reservations:
cpus: '2'
memory: 2048M
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- ${CONFIG_DIR}/docker/immich/cache:/cache
env_file:
- .env
environment:
- NODE_ENV=production
restart: always
immich-web:
container_name: immich_web
image: altran1502/immich-web:release
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:
PG_DATA: /var/lib/postgresql/data
volumes:
- ${CONFIG_DIR}/docker/immich/pgsql:/var/lib/postgresql/data
restart: always
immich-proxy:
container_name: immich_proxy
image: altran1502/immich-proxy:release
environment:
# Make sure these values get passed through from the env file
- IMMICH_SERVER_URL
- IMMICH_WEB_URL
logging:
driver: none
depends_on:
- immich-server
restart: always
ports:
- 8080:8080