docker-image

Top 23 docker-image Open-Source Projects

  • dive

    A tool for exploring each layer in a docker image

  • Project mention: Mastering Docker Image Optimization: 6 Key Strategies for building Lighter, Faster, and Safer images | dev.to | 2024-04-04

    Dive is an open-source tool that allows you to explore the various layers of a Docker image. It shows you the content of each layer and helps you identify voluminous or unnecessary parts.

  • Portainer

    Making Docker and Kubernetes management easy.

  • Project mention: Runtipi: Docker-Based Home Server Management | news.ycombinator.com | 2024-04-04

    > Any tips on the minimum hardware or VPS's needed to get a small swarm cluster setup?

    From my testing, Docker Swarm is very lightweight, uses less memory than both Hashicorp Nomad and lightweight Kubernetes distros (like K3s). Most of the resource requirements will depend on what containers you actually want to run on the nodes.

    You might build a cluster from a bunch of Raspberry Pis, some old OptiPlex boxes or laptops, or whatever you have laying around and it's mostly going to be okay. On a practical level, anything with 1-2 CPU cores and 4 GB of RAM will be okay for running any actually useful software, like a web server/reverse proxy, some databases (PostgreSQL/MySQL/MariaDB), as well as either something for a back end or some pre-packaged software, like Nextcloud.

    So, even 5$/month VPSes are more than suitable, even from some of the more cheap hosts like Hetzner or Contabo (though the latter has a bad rep for limited/no support).

    That said, you might also want to look at something like Portainer for a nice web based UI, for administering the cluster more easily, it really helps with discoverability and also gives you redeploy web hooks, to make CI easier: https://www.portainer.io/ (works for both Docker Swarm as well as Kubernetes, except the Kubernetes ingress control was a little bit clunky with Traefik instead of Nginx)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • awesome-docker

    :whale: A curated list of Docker resources and projects

  • Wekan

    The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://app.transifex.com/wekan/wekan only.

  • Project mention: Elegant open source project tracking, Trello like but self-hosted | news.ycombinator.com | 2024-03-18

    Looks nice, I selfhosted https://github.com/wekan/wekan for a while, which is a MIT licensed heavily Trello-inspired alternative, does someone know both Wekan and Plankanban and can tell their differences?

  • chatwoot

    Open-source live-chat, email support, omni-channel desk. An alternative to Intercom, Zendesk, Salesforce Service Cloud etc. 🔥💬

  • verdaccio

    📦🔐 A lightweight Node.js private proxy registry

  • flannel

    flannel is a network fabric for containers, designed for Kubernetes

  • Project mention: How to create a 3-node kubernetes cluster and deploy an application on my ubuntu 22.04 minibox | dev.to | 2024-01-10

    $ kubectl apply -f https://github.com/flannel-io/flannel/releases/latest/download/kube-flannel.yml

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
  • docker-minecraft-server

    Docker image that provides a Minecraft Server that will automatically download selected version at startup

  • Project mention: PaperMC/Paper: The most widely used, high performance Minecraft server | news.ycombinator.com | 2024-03-10

    Looks nice! I have a comprehensive docker compose file with itzg’s image [0] repeated a dozen times.

    [0] https://github.com/itzg/docker-minecraft-server

  • docker-node

    Official Docker Image for Node.js :whale: :turtle: :rocket:

  • Project mention: Standalone Next.js. When serverless is not an option | dev.to | 2024-04-12

    FROM node:16-alpine AS base FROM base AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat WORKDIR /app COPY package.json package-lock.json* ./ RUN npm ci FROM base AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . RUN npm run build # Production image, copy all the files and run next FROM base AS runner WORKDIR /app ENV NODE_ENV production COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/static ./.next/static COPY --from=builder /app/public ./public EXPOSE 3000 ENV PORT 3000 ENV HOSTNAME localhost CMD ["node", "server.js"]

  • docker-gitlab

    Dockerized GitLab

  • Project mention: Gitlab docker port number missing on http clone. | /r/gitlab | 2023-04-27
  • docker-ipsec-vpn-server

    Docker image to run an IPsec VPN server, with IPsec/L2TP, Cisco IPsec and IKEv2

  • Project mention: Selfhosted VPN advice for Homelab Access | /r/homelab | 2023-07-10

    IPSEC-L2TP is built into everything. No clients required on Windows, Mac, Android, iOS, Linux, etc. Great Docker container for cutting through most of the difficulty here: https://hub.docker.com/r/hwdsl2/ipsec-vpn-server

  • kraken

    P2P Docker registry capable of distributing TBs of data in seconds

  • Project mention: BTFS (BitTorrent Filesystem) | news.ycombinator.com | 2024-04-15

    https://github.com/uber/kraken?tab=readme-ov-file#comparison...

    "Kraken was initially built with a BitTorrent driver, however, we ended up implementing our P2P driver based on BitTorrent protocol to allow for tighter integration with storage solutions and more control over performance optimizations.

    Kraken's problem space is slightly different than what BitTorrent was designed for. Kraken's goal is to reduce global max download time and communication overhead in a stable environment, while BitTorrent was designed for an unpredictable and adversarial environment, so it needs to preserve more copies of scarce data and defend against malicious or bad behaving peers.

    Despite the differences, we re-examine Kraken's protocol from time to time, and if it's feasible, we hope to make it compatible with BitTorrent again."

  • docker

    ⛴ Docker image of Nextcloud (by nextcloud)

  • Project mention: Has Anyone Created A Working Docker Container? | /r/NextCloud | 2023-12-09
  • docker-openldap

    OpenLDAP container image 🐳🌴

  • Project mention: Question: How to Use LDAP Authentication and User Accounts On TAK Servers | /r/ATAK | 2023-07-09

    I'm entirely unfamiliar with overlays. I don't believe I've configured any on my OpenLDAP server, as it is just a default docker image I've populated with some OUs and users.

  • werf

    A solution for implementing efficient and consistent software delivery to Kubernetes facilitating best practices.

  • docker-ubuntu-vnc-desktop

    A Docker image to provide web VNC interface to access Ubuntu LXDE/LxQT desktop environment.

  • DockerCheatSheet

    🐋 Docker Cheat Sheet 🐋 (by eon01)

  • uwsgi-nginx-flask-docker

    Docker image with uWSGI and Nginx for Flask applications in Python running in a single container.

  • Aria2-Pro-Docker

    Aria2 Pro | A perfect Aria2 Docker image | 更好用的 Aria2 Docker 容器镜像

  • cloudflare-ddns

    🎉🌩️ Dynamic DNS (DDNS) service based on Cloudflare! Access your home network remotely via a custom domain name without a static IP!

  • Project mention: Dynamic DNS | /r/CloudFlare | 2023-06-13
  • tun2socks

    tun2socks - powered by gVisor TCP/IP stack

  • Project mention: VirtualBox KVM Public Release | news.ycombinator.com | 2024-02-08

    You can probably do this for VirtualBox (and any Linux program) by using tun2socks to create a network interface that routes through a proxy (SOCKS5 if you want UDP support), and then moving that network interface to a new namespace. You can run VirtualBox or any other programs in that new namespace, they don't have to be aware of the proxy at all (since they just see a regular gateway).

    https://github.com/xjasonlyu/tun2socks

  • docker-compose-lamp

    A basic LAMP stack environment built using Docker Compose.

  • Project mention: Docker compose Secure LAMP/LEMP | /r/selfhosted | 2023-06-05
  • uvicorn-gunicorn-fastapi-docker

    Docker image with Uvicorn managed by Gunicorn for high-performance FastAPI web applications in Python with performance auto-tuning.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2024-04-15.

docker-image related posts

Index

What are some of the best open-source docker-image projects? This list will help you:

Project Stars
1 dive 43,487
2 Portainer 28,736
3 awesome-docker 28,265
4 Wekan 19,108
5 chatwoot 18,512
6 verdaccio 15,841
7 flannel 8,477
8 docker-minecraft-server 8,313
9 docker-node 8,056
10 docker-gitlab 7,766
11 docker-ipsec-vpn-server 6,107
12 kraken 5,844
13 docker 5,609
14 docker-openldap 3,945
15 werf 3,907
16 docker-ubuntu-vnc-desktop 3,766
17 DockerCheatSheet 3,603
18 uwsgi-nginx-flask-docker 2,955
19 Aria2-Pro-Docker 2,949
20 cloudflare-ddns 2,677
21 tun2socks 2,672
22 docker-compose-lamp 2,516
23 uvicorn-gunicorn-fastapi-docker 2,513
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com