Dockerfile
2023. 8. 1. 22:45ㆍ리눅스 실제 사용 팁/Docker
작성일 : 2018. 8. 20
Dockerfile 내용 :
FROM debian:stable-slim
MAINTAINER jh.han@mygenomebox.com
RUN apt-get -y update
COPY . /opt
WORKDIR /opt
RUN ln -s zulu8.31.0.1-jdk8.0.181-linux_x64 jdk
"docker build" requires exactly 1 argument.
See 'docker build --help'.
Usage: docker build [OPTIONS] PATH | URL | - [flags]
Build an image from a Dockerfile
[mgblauncher@MGB-v2-FTP01 build]$ docker build --help
Usage: docker build [OPTIONS] PATH | URL | -
Build an image from a Dockerfile
Options:
--add-host list Add a custom host-to-IP mapping (host:ip)
--build-arg list Set build-time variables
--cache-from strings Images to consider as cache sources
--cgroup-parent string Optional parent cgroup for the container
--compress Compress the build context using gzip
--cpu-period int Limit the CPU CFS (Completely Fair Scheduler) period
--cpu-quota int Limit the CPU CFS (Completely Fair Scheduler) quota
-c, --cpu-shares int CPU shares (relative weight)
--cpuset-cpus string CPUs in which to allow execution (0-3, 0,1)
--cpuset-mems string MEMs in which to allow execution (0-3, 0,1)
--disable-content-trust Skip image verification (default true)
-f, --file string Name of the Dockerfile (Default is 'PATH/Dockerfile')
--force-rm Always remove intermediate containers
--iidfile string Write the image ID to the file
--isolation string Container isolation technology
--label list Set metadata for an image
-m, --memory bytes Memory limit
--memory-swap bytes Swap limit equal to memory plus swap: '-1' to enable unlimited swap
--network string Set the networking mode for the RUN instructions during build (default "default")
--no-cache Do not use cache when building the image
--pull Always attempt to pull a newer version of the image
-q, --quiet Suppress the build output and print image ID on success
--rm Remove intermediate containers after a successful build (default true)
--security-opt strings Security options
--shm-size bytes Size of /dev/shm
-t, --tag list Name and optionally a tag in the 'name:tag' format
--target string Set the target build stage to build.
--ulimit ulimit Ulimit options (default [])
'리눅스 실제 사용 팁 > Docker' 카테고리의 다른 글
Docker - Maria DB 실행 및 설정 (0) | 2023.12.02 |
---|---|
Docker : Oracle Database (0) | 2023.08.08 |
Docker Compose (번역) (0) | 2023.05.06 |
Docker 외부 파일을 가져오기 (Import) (0) | 2023.05.06 |
Docker 이미지를 파일로 내보내기 (Export) (0) | 2023.05.06 |