Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- On-Premise
- transit gateway
- AWS
- docker swarm
- prometheus
- 온프레미스
- null 병합 연산자
- 구조분해 할당
- Custom Resource
- JavaScript
- 자바스크립트
- elasticsearch
- CloudFormation
- DynamoDB
- docker
- grafana
- VPC
- Site-to-Site VPN
- Kubernetes
- Await
- 단축 평가
- Proxy Resource
- cognito
- Endpoints
- vgw
- Service
- api gateway
- optional chaining
- 옵셔널 체이닝
- 비구조화 할당
Archives
- Today
- Total
만자의 개발일지
[Docker] 이미지 태그에 timestamp 찍기 본문
도커 이미지 태그에 현재 시간(timestamp)을 찍고 싶으면 빌드할때 다음과 같이 명령어를 입력해주면 됩니다.
$ docker build . -t <image_name>:$(date +%Y%m%d%H%M%S)
앞에서 부터 순서대로 %Y는 년도(%y는 년도뒤에 2자리), %m은 달(월), %d는 일, %H는 시, %M은 분,%S는 초를 나타냅니다.
여기서 주의할점은 (date +%Y%m...) 이부분에서 + 뒤에 공백이 있으면 안되고 꼭 붙여줘야합니다.
date: extra operand ‘%Y%m%d%H%M%S’
Try 'date --help' for more information.
invalid argument "test:" for "-t, --tag" flag: invalid reference format
아니면 위와같은 에러를 반환합니다...
또한 여러가지 방법으로 커스텀할 수 있습니다.
$ date "+%Y-%m-%d"
ex) 2022-01-04
'Docker' 카테고리의 다른 글
[Docker] Docker Compose 사용하기 (1) | 2022.02.23 |
---|---|
[Docker] Docker 이미지 ECR에 푸쉬하기 (0) | 2021.12.28 |
[Docker] Dockerfile 생성 후 build하기 (feat. Node.js, S3, EC2) (0) | 2021.12.20 |
[Docker] 호스트와 컨테이너 파일 시스템 연결 (0) | 2021.11.12 |
[Docker] Docker 컨테이너에 접속하기 (1) | 2021.11.12 |
Comments