Sign inSign up

fredix/gobee

By fredix

Updated over 2 years ago

https://codeberg.org/fredix/gobee

Image
0

421

fredix/gobee repository overview

Gobee

Gobee is a personal medias storage. It use mongoDB GridFS to store your files. Gobee can generate a bittorrent file to share yours medias with yours friends.

Installation

docker-compose.yml

version: "3.8"

services:
  gobee:
    container_name: fredix/gobee
    restart: always
    ports:
      - 8080:1323
      - 6969:1324
    depends_on:
      - mongodb
    links:
      - mongodb:mongodb
      - redis:redis

  mongodb:
    image: mongo
    container_name: mongodb
    restart: always
    volumes:
      - mongodb:/data/db

  redis:
    image: redis
    container_name: redis
    restart: always
  
volumes:
  mongodb:

docker compose up -d

Tag summary

Content type

Image

Digest

sha256:43287c9df

Size

16 MB

Last updated

over 2 years ago

docker pull fredix/gobee