docker

Installation
SKILL.md

Docker Skill

Guidance for containerizing applications with Docker, Docker Compose, and multi-stage builds.

Quick Start

# Dockerfile for Laravel
FROM php:8.3-fpm AS base

WORKDIR /var/www/html

# Install system dependencies
RUN apt-get update && apt-get install -y \
    git curl zip unzip

# Install Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
Installs
1
First Seen
9 days ago
docker — stifleur390/fullstack-dev-skills