d

docker-compose

emanuelegori
Last active 1 month ago bookorbit docker docker-compose

BookOrbit è una piattaforma self‑hosted e open source per gestire e leggere ebook, audiolibri e fumetti. Offre lettori integrati per più formati, gestione automatica dei metadati, sincronizzazione con Kobo e KOReader, supporto multi‑utente con SSO, cataloghi OPDS privati e analitiche di lettura avanzate, il tutto con una semplice distribuzione via Docker e senza abbonamenti.

0 0 1
1 services:
2 bookorbit:
3 container_name: bookorbit-app
4 image: ghcr.io/bookorbit/bookorbit:latest
5 restart: unless-stopped
6 init: true
7 ports:
8 - "127.0.0.1:3000:3000"
9 environment:
10 NODE_ENV: production
emanuelegori
Last active 4 months ago docker docker-compose manager nginx npm proxy

Expose web services on your network · Free SSL with Let's Encrypt · Designed with security in mind · Perfect for home networks: By creating a custom Docker network, you don't need to publish ports for your upstream services to all of the Docker host's interfaces.

0 0 1
1 secrets:
2 # Secrets are single-line text files where the sole content is the secret
3 # Paths in this example assume that secrets are kept in local folder called ".secrets"
4 DB_ROOT_PWD:
5 file: .secrets/db_root_pwd.txt
6 MYSQL_PWD:
7 file: .secrets/mysql_pwd.txt
8
9 services:
10 npm: