🐳 dokploy

Open Source Alternative to Vercel, Netlify and Heroku.

Docker Ready 36,549 stars
1. Pull Image docker pull Dokploy/dokploy:latest
2. 1-Click Launch Command docker run -d --name dokploy --restart always Dokploy/dokploy:latest
.devcontainer/Dockerfile
# Dockerfile for DevContainer
FROM node:24.4.0-bullseye-slim

# Install essential packages
RUN apt-get update && apt-get install -y \
    curl \
    bash \
    git \
    && apt-get clean \
    && rm -rf /var/lib/apt/lists/*

# Set up PNPM
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable && corepack prepare [email protected] --activate

# Create workspace directory
WORKDIR /workspaces/dokploy

# Set up user permissions
USER node