Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gogs | 42,312 | 8 days ago | 84 | August 02, 2022 | 850 | mit | Go | |||
Gogs is a painless self-hosted Git service | ||||||||||
Full Stack Fastapi Postgresql | 11,931 | 15 days ago | 215 | mit | Python | |||||
Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more. | ||||||||||
Coolify | 7,843 | 5 hours ago | 266 | apache-2.0 | Svelte | |||||
An open-source & self-hostable Heroku / Netlify alternative. | ||||||||||
Docker Gitlab | 7,582 | 7 days ago | 523 | mit | Shell | |||||
Dockerized GitLab | ||||||||||
Plane | 6,486 | 4 hours ago | 68 | apache-2.0 | TypeScript | |||||
🔥 🔥 🔥 Open Source JIRA, Linear and Height Alternative. Plane helps you track your issues, epics, and product roadmaps in the simplest way possible. | ||||||||||
Pgloader | 4,469 | a month ago | 1 | February 27, 2018 | 295 | other | Common Lisp | |||
Migrate to PostgreSQL in a single command! | ||||||||||
Devilbox | 4,138 | 21 days ago | 51 | mit | PHP | |||||
A modern Docker LAMP stack and MEAN stack for local development | ||||||||||
Stolon | 4,066 | 4 months ago | 17 | September 03, 2021 | 141 | apache-2.0 | Go | |||
PostgreSQL cloud native High Availability and more. | ||||||||||
Dbmate | 3,432 | 1 | 2 days ago | 27 | March 25, 2022 | 16 | mit | Go | ||
:rocket: A lightweight, framework-agnostic database migration tool. | ||||||||||
Graphjin | 2,667 | 2 | 20 days ago | 457 | September 20, 2022 | 16 | apache-2.0 | Go | ||
GraphJin - Build NodeJS / GO APIs in 5 minutes not weeks |
A docker image for PeerTube the federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent.
Since PeerTube requires a database and for now only supports PostgreSQL, here is an example (running docker-compose for convenience) that links to the official PostgreSQL docker image. You can of course adapt to use your favorite PostgreSQL image. Just be sure to follow the production guide and properly configure your reverse proxy.
version: "3"
services:
peertube:
image: index.docker.io/dryusdan/peertube:latest
container_name: peertube
restart: always
environment:
- HTTPS=true
- HOSTNAME=peertube.tld
- PORT=443
- DATABASE_HOST=db
- DATABASE_USERNAME=peertube
- DATABASE_PASSWORD=
- [email protected]
- SIGNUP_ENABLE=true
- TRANSCODING_THREADS=2
- BODY_SIZE=1G
- SIGNUP_LIMIT=-1
- CACHE_SIZE=100
- VIDEO_QUOTA=104857600
external_links:
- peertube-db:db
volumes:
- /home/docker/services/web/peertube/avatars:/PeerTube/avatars
- /home/docker/services/web/peertube/certs:/PeerTube/certs
- /home/docker/services/web/peertube/videos:/PeerTube/videos
- /home/docker/services/web/peertube/logs:/PeerTube/logs
- /home/docker/services/web/peertube/previews:/PeerTube/previews
- /home/docker/services/web/peertube/thumbnails:/PeerTube/thumbnails
- /home/docker/services/web/peertube/torrents:/PeerTube/torrents
peertube-db:
restart: always
container_name: peertube-postgresql
image: index.docker.io/postgres:9.6.5-alpine
environment:
- POSTGRES_USER=peertube
- POSTGRES_PASSWORD=peertube
- POSTGRES_DB=peertube_prod
volumes:
- /home/docker/db/peertube/postgresql/data:/var/lib/postgresql/data