# log4jSample **Repository Path**: jerryzu/log4jSample ## Basic Information - **Project Name**: log4jSample - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-12 - **Last Updated**: 2025-07-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README docker build -t jerryzu/log4j2-demo . # 构建镜像(自动读取docker-compose.yml中的build配置) docker-compose build # 带参数构建(可选) docker-compose build --no-cache # 禁用缓存构建 docker-compose build --force-rm # 构建成功后删除中间容器 # 清理旧构建 docker-compose down --rmi all # 停止并删除容器 docker-compose down # 重新构建并启动 docker-compose up -d --build # 清理所有构建缓存 docker builder prune