共用方式為


jobs.job.container definition

容器作業可讓您在容器上執行作業,而不是代理程式主機。

參考此定義的定義:管線jobs.jobjobs.deployment

實作

實施 說明
容器:字串 依別名指定作業容器。
容器:映像 使用映像標記和選項指定作業容器。

container: string

依別名指定作業容器。

container: string # Specify job container by alias.

container 字串。

依別名指定作業容器。

備註

別名可以是映像的名稱,也可以是 容器資源的參考

範例

下列範例會從 Docker Hub 擷取標記 18.04 的 ubuntu 映射,然後啟動容器。 當 printenv 命令執行時,它會在 ubuntu:18.04 容器內發生。

pool:
  vmImage: 'ubuntu-18.04'

container: ubuntu:18.04

steps:
- script: printenv

容器:映像

使用映像標記和選項指定作業容器。

container:
  image: string # Required. Container image tag.
  endpoint: string # ID of the service endpoint connecting to a private container registry.
  env: # Variables to map into the container's environment.
    string: string # Name/value pairs
  mapDockerSocket: boolean # Set this flag to false to force the agent not to setup the /var/run/docker.sock volume on container jobs.
  options: string # Options to pass into container host.
  ports: [ string ] # Ports to expose on the container.
  volumes: [ string ] # Volumes to mount on the container.
  mountReadOnly: # Volumes to mount read-only, the default is all false.
    work: boolean # Mount the work directory as readonly.
    externals: boolean # Mount the externals directory as readonly.
    tools: boolean # Mount the tools directory as readonly.
    tasks: boolean # Mount the tasks directory as readonly.

性能

image 字串。 必須的。
容器映像標記。

endpoint 字串。
連線至私人容器登錄的服務端點標識符。

env 字串字典。
變數,以對應至容器的環境。

mapDockerSocket 布林值
將此旗標設定為 false,強制代理程式不要在容器作業上設定 /var/run/docker.sock 磁碟區。

options 字串。
要傳遞至容器主機的選項。

ports 字串清單。
要公開在容器上的埠。

volumes 字串清單。
要掛接在容器上的磁碟區。

mountReadOnly mountReadOnly
磁碟區掛接只讀,預設值為 false。

容器:映像

使用映像標記和選項指定作業容器。

container:
  image: string # Required. Container image tag.
  endpoint: string # ID of the service endpoint connecting to a private container registry.
  env: # Variables to map into the container's environment.
    string: string # Name/value pairs
  mapDockerSocket: boolean # Set this flag to false to force the agent not to setup the /var/run/docker.sock volume on container jobs.
  options: string # Options to pass into container host.
  ports: [ string ] # Ports to expose on the container.
  volumes: [ string ] # Volumes to mount on the container.

性能

image 字串。 必須的。
容器映像標記。

endpoint 字串。
連線至私人容器登錄的服務端點標識符。

env 字串字典。
變數,以對應至容器的環境。

mapDockerSocket 布林值
將此旗標設定為 false,強制代理程式不要在容器作業上設定 /var/run/docker.sock 磁碟區。

options 字串。
要傳遞至容器主機的選項。

ports 字串清單。
要公開在容器上的埠。

volumes 字串清單。
要掛接在容器上的磁碟區。

範例

使用 options 來設定容器啟動。

container:
  image: ubuntu:18.04
  options: --hostname container-test --ip 192.168.0.1

steps:
- script: echo hello

在下列範例中,容器定義於 resources 區段中。 稍後會參考每個容器,方法是參考其指派的別名。

resources:
  containers:
  - container: u14
    image: ubuntu:14.04

  - container: u16
    image: ubuntu:16.04

  - container: u18
    image: ubuntu:18.04

jobs:
- job: RunInContainer
  pool:
    vmImage: 'ubuntu-18.04'

  strategy:
    matrix:
      ubuntu14:
        containerResource: u14
      ubuntu16:
        containerResource: u16
      ubuntu18:
        containerResource: u18

  container: $[ variables['containerResource'] ]

  steps:
  - script: printenv

另請參閱