# docker-example **Repository Path**: ylls/docker-example ## Basic Information - **Project Name**: docker-example - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-29 - **Last Updated**: 2025-09-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## webman ### 1.进入项目 ```shell cd webman ``` ### 1.构建镜像 ```shell docker build -t webman:latest -f docker/Dockerfile . ``` ### 2.安装项目依赖 ```shell docker compose run --rm --entrypoint sh webman-http > cd /app && composer install --no-dev -o ``` ### 3.启动项目 ```shell docker compose up -d ``` ### 4.访问项目 ```shell curl http://127.0.0.1:18787 ``` ## nuxt ### 1.构建镜像 ```shell docker build -t nuxt:latest -f docker/Dockerfile . ```