일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- chatGPT's answer
- Database
- 자바
- spring integration
- Java
- jpa
- NIO
- 시스템
- GPT-4's answer
- oracle
- 자바암호
- 웹 크롤링
- flet
- 소프트웨어공학
- 고전역학
- JVM
- 데이터베이스
- python
- 인프라
- write by GPT-4
- spring data jpa
- android
- 코틀린
- write by chatGPT
- kotlin
- 리눅스
- 자바네트워크
- 파이썬
- 유닉스
- 역학
- Today
- Total
Akashic Records
Docker Compose 설치 본문
docs.docker.com/compose/install/
자세한 내용은 여기
1. sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
2. sudo chmod +x /usr/local/bin/docker-compose
3. $ docker-compose --version
docker-compose version 1.27.4, build 1110ad01
4. "docker-compose" 명령이 실행이 안되면
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
Overview of Docker Compose
Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. Then, with a single command, you create and start all the services from your configuration. To learn more about all the features of Compose, see the list of features.
Compose works in all environments: production, staging, development, testing, as well as CI workflows. You can learn more about each case in Common Use Cases.
Using Compose is basically a three-step process:
-
Define your app’s environment with a Dockerfile so it can be reproduced anywhere.
-
Define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment.
-
Run docker-compose up and Compose starts and runs your entire app.
A docker-compose.yml looks like this:
version: "3.9" # optional since v1.27.0
services:
web:
build: .
ports:
- "5000:5000"
volumes:
- .:/code
- logvolume01:/var/log
links:
- redis
redis:
image: redis
volumes:
logvolume01: {}
For more information about the Compose file, see the Compose file reference.
Compose has commands for managing the whole lifecycle of your application:
- Start, stop, and rebuild services
- View the status of running services
- Stream the log output of running services
- Run a one-off command on a service
'Library' 카테고리의 다른 글
@Secured, @PreAuthorize, @PostAuthorize (0) | 2021.01.27 |
---|---|
Top 5 Java recursion examples (0) | 2021.01.22 |
Lombok features - @With (0) | 2020.12.21 |
Lombok features - @Synchronized (0) | 2020.12.21 |
Lombok features - @NoArgsConstructor, @RequiredArgsConstructor, @AllArgsConstructor (0) | 2020.12.21 |