Homelab Troubleshooting

Tips on running a Linux server and docker.

User Tools

Site Tools


photosalts

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
photosalts [2021/08/28 10:00] alexk7110photosalts [2021/08/28 11:42] (current) – [Librephotos Setup] alexk7110
Line 1: Line 1:
 ====== Alternatives to Google Photos ====== ====== Alternatives to Google Photos ======
 +===== Librephotos ===== 
 +  * https://github.com/LibrePhotos/librephotos 
 +===== Imagestore =====
   * https://github.com/gregordr/ImageStore   * https://github.com/gregordr/ImageStore
- 
-  * https://github.com/LibrePhotos/librephotos 
  
 ===== Librephotos Setup ===== ===== Librephotos Setup =====
  
-=== Docker-compose method (Recommended)Permalink ===+=== Docker-compose method (Recommended) ===
  
 Clone the repo: ''git clone git@github.com:LibrePhotos/librephotos-docker.git'' Clone the repo: ''git clone git@github.com:LibrePhotos/librephotos-docker.git''
Line 44: Line 44:
   # Every day at 3 AM   # Every day at 3 AM
   0 3 * * * sudo docker exec --user root CONTAINER_NAME python3 manage.py scan >/dev/null 2>&1   0 3 * * * sudo docker exec --user root CONTAINER_NAME python3 manage.py scan >/dev/null 2>&1
-  + 
 +===== Imagestore setup ===== 
 +Installation instructions: 
 +Docker prebuilt images 
 + 
 +Requirements: 
 + 
 +  Docker 
 +  Docker-compose 
 +  For automatic labeling: x86_64 CPU (also known as x64, x86_64, AMD64 and Intel 64) 
 + 
 +Download the docker-compose.yml: wget https://raw.githubusercontent.com/gregordr/ImageStore/main/docker-compose.yml. 
 + 
 +Edit it according to your liking, then run docker-compose up. Note that you need to comment back in one of the two labelers, in case you want automatic image labeling. 
 + 
 +Go to ''http://localhost:3000'', or alternatively the port you have chosen to use. 
 + 
 +<code yaml docker-compose.yml> 
 +--- 
 +services: 
 +    nginx: 
 +        image: imagestored/nginx 
 +        ports: 
 +            - "3000:8080" #Change to X:8080 to access on port X 
 +        depends_on: 
 +            - frontend 
 + 
 +    frontend: 
 +        image: imagestored/frontend 
 +        depends_on: 
 +            - backend 
 + 
 +    backend: 
 +        image: imagestored/backend 
 +        restart: always 
 +        environment: 
 +            PGSTRING: postgres://postgres:example@db:5432/postgres # This string has to resolve to a Postgres database on version 11 
 +        volumes: 
 +            - ./media/:/code/media/ 
 +        depends_on: 
 +            - db 
 + 
 +    db: 
 +        image: postgres:11 
 +        restart: always 
 +        environment: 
 +            POSTGRES_PASSWORD: example 
 +        volumes: 
 +            - ./data/:/var/lib/postgresql/data/ 
 + 
 +    # detectron2: # You can use either detectron2, which is slower but more accurate, or yolo, which is faster but has less accurate results, and is very lightweight. Check yourself how much load detectron2 puts on your device, and if it's too much, switch to yolo. Comment out the model you want to use back in, but never comment out both. 
 +    #     image: imagestored/detectron2 
 +    #     environment: 
 +    #         BASE_ADDRESS: backend:4000 # Set this to the address the backend will be accessible on 
 +    #         FETCH_INTERVAL: 10 # This is the interval the labeler will poll for new images in seconds 
 + 
 +    # yolo: # You can use either detectron2, which is slower but more accurate, or yolo, which is faster but has less accurate results, and is very lightweight. Check yourself how much load detectron2 puts on your device, and if it's too much, switch to yolo. Comment out the model you want to use back in, but never comment out both. 
 +    #     image: imagestored/yolo 
 +    #     environment: 
 +    #         BASE_ADDRESS: backend:4000 # Set this to the address the backend will be accessible on 
 +    #         FETCH_INTERVAL: 10 # This is the interval the labeler will poll for new images in seconds 
 +version: "3.9" 
 +</code>
photosalts.1630134008.txt.gz · Last modified: 2021/08/28 10:00 by alexk7110