Koillection
-

What is Koillection?
Koillection is a self-hosted collection manager created to keep track of physical (mostly) collections of any kind like books, DVDs, stamps, games… Koillection is meant to be used for any kind of collections and doesn’t come with pre-built metadata download. But you can tailor your own HTML scraper, or you can add your own metadata freely.
LISCENSE
https://github.com/benjaminjonard/koillection/blob/1.5/LICENSE
Docker Composeversion: '3' services: # Koillection koillection: image: koillection/koillection container_name: koillection restart: unless-stopped ports: - 8082:80 environment: - DB_DRIVER=pdo_pgsql - DB_NAME=koillection - DB_HOST=db - DB_PORT=5432 - DB_USER=root - DB_PASSWORD=root - DB_VERSION=12.2 - PHP_TZ=America/Chicago - HTTPS_ENABLED=0 #(1 or 0) depends_on: - db volumes: - conf:/conf - uploads:/uploads # Database : choose one of the following db: image: postgres:latest container_name: db restart: unless-stopped environment: - POSTGRES_DB=koillection - POSTGRES_USER=root - POSTGRES_PASSWORD=root volumes: - "postgresql:/var/lib/postgresql/data" volumes: postgresql: conf: uploads: