David Gitman

David Gitman

DevOps & Backend Engineer

I build and automate the backbone of the cloud. As a DevOps-minded engineer at Wix, I live at the intersection of software development and infrastructure, turning complex challenges into elegant solutions with Terraform, Kubernetes, and AWS.

My DevOps Toolkit

Infrastructure as Code

Containerization

Cloud Platforms

Monitoring & Logging

Featured Project

Dockerized Homelab Infrastructure

Docker Compose IaC Cloudflare Tunnel Uptime Kuma Plex

This is my homelab, defined entirely as code. This repository uses Docker Compose to manage a microservices-style architecture, proving that modern DevOps principles like Infrastructure as Code (IaC) and version control aren't just for the enterprise—they're for any project that values automation and resilience.

# --- cloudflared.yaml ---
# Securely exposes web services to the internet
version: "3.6"
services:
  cloudflared:
    container_name: cloudflared
    image: cloudflare/cloudflared:latest
    restart: unless-stopped
    command: tunnel --no-autoupdate run --token [YOUR_TOKEN]

# --- uptime-kuma.yaml ---
# Self-hosted monitoring for all my services
version: '3.3'
services:
  uptime-kuma:
    image: louislam/uptime-kuma:1
    container_name: uptime-kuma
    volumes:
      - ./data:/app/data
    ports:
      - 3001:3001
    restart: unless-stopped