# docker-compose **Repository Path**: shiya_liu/docker-compose ## Basic Information - **Project Name**: docker-compose - **Description**: 使用docker-compose.yaml启动各类运维服务,一键搭建环境,方便快速上手学习。适合初步学习Linux运维服务的小伙伴,注意:未经亲测不要随意在线上环境使用,否则后果自负! - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: https://gitee.com/shiya_liu/docker-compose - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-11 - **Last Updated**: 2024-04-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: Docker, 容器, 一键部署启动, linux运维, 快速入门 ## README # docker-compose #### 介绍 使用docker-compose.yaml启动各类服务,一键搭建环境,方便快速上手学习。 #### docker-compose安装 ```shell # arm64架构 wget https://github.com/docker/compose/releases/download/v2.24.5/docker-compose-linux-aarch64 mv docker-compose-linux-aarch64 /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose docker pull --platform arm64 image_name # x86架构 wget https://github.com/docker/compose/releases/download/v2.24.5/docker-compose-linux-x86_64 mv docker-compose-linux-x86_64 /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose docker pull --platform linux/x86_64 image_name ``` #### 配置详解 #### 指令参数 [链接🔗](https://gitee.com/shiya_liu/docker-compose/blob/master/OPTIONS.md)