This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
photosalts [2021/08/28 10:00] – alexk7110 | photosalts [2021/08/28 11:42] (current) – [Librephotos Setup] alexk7110 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Alternatives to Google Photos ====== | ====== Alternatives to Google Photos ====== | ||
+ | ===== Librephotos ===== | ||
+ | * https:// | ||
+ | ===== Imagestore ===== | ||
* https:// | * https:// | ||
- | |||
- | * https:// | ||
===== Librephotos Setup ===== | ===== Librephotos Setup ===== | ||
- | === Docker-compose method (Recommended)Permalink | + | === Docker-compose method (Recommended) === |
Clone the repo: '' | Clone the repo: '' | ||
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 >/ | 0 3 * * * sudo docker exec --user root CONTAINER_NAME python3 manage.py scan >/ | ||
- | | + | |
+ | ===== 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: | ||
+ | |||
+ | 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 '' | ||
+ | |||
+ | <code yaml docker-compose.yml> | ||
+ | --- | ||
+ | services: | ||
+ | nginx: | ||
+ | image: imagestored/ | ||
+ | ports: | ||
+ | - " | ||
+ | depends_on: | ||
+ | - frontend | ||
+ | |||
+ | frontend: | ||
+ | image: imagestored/ | ||
+ | depends_on: | ||
+ | - backend | ||
+ | |||
+ | backend: | ||
+ | image: imagestored/ | ||
+ | restart: always | ||
+ | environment: | ||
+ | PGSTRING: postgres:// | ||
+ | volumes: | ||
+ | - ./ | ||
+ | depends_on: | ||
+ | - db | ||
+ | |||
+ | db: | ||
+ | image: postgres: | ||
+ | restart: always | ||
+ | environment: | ||
+ | POSTGRES_PASSWORD: | ||
+ | volumes: | ||
+ | - ./ | ||
+ | |||
+ | # 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. | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | |||
+ | # 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. | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | version: " | ||
+ | </ |