Sign inSign up

deepamlab/quicrop

By deepamlab

Updated over 2 years ago

An analysis and cropping tool for photo labs.

Image
0

315

deepamlab/quicrop repository overview

Quicrop

An analysis and cropping tool for photo labs.

Installation

Create the following docker-compose.yml template:

version: "3"

services:

  quicrop-db:
    image: deepamlab/mariadb:10.2
    volumes:
      - ./quicrop_cache/db:/var/lib/mysql
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: toor
      MYSQL_DATABASE: quicrop

  quicrop-app:
    image: deepamlab/quicrop:latest
    volumes:
      - ./quicrop_cache/files:/var/www/html/files/files
    ports:
      - "80:80"
    depends_on:
      - quicrop-db
    restart: always

Once the docker-compose.yml file is created, run the following commands:

docker compose up -d
sudo chmod -R 777 quicrop_cache/files/

Tag summary

Content type

Image

Digest

sha256:48db6acbf

Size

124.7 MB

Last updated

over 2 years ago

docker pull deepamlab/quicrop