1
私はVSTSとドッキングウィンドウ-コンを使用して連続配信を設定しようとしていると私はAzureのコンテナレジストリにそれをプッシュしたいを構成しています。 ここにVSTSの私のビルド定義があります: VSTSのドッキングウィンドウは、タスク
と私は、ビルド結果にエラーメッセージが出てい:
No such command: docker_compose
Commands:
build Build or rebuild services
bundle Generate a Docker bundle from the Compose file
config Validate and view the Compose file
create Create services
down Stop and remove containers, networks, images, and volumes
events Receive real time events from containers
exec Execute a command in a running container
help Get help on a command
あなたは、私はそれを扱うことができる方法を知っていますか?
UPDATE: はここに私の
version: '3'
services:
ci-build:
image: microsoft/aspnetcore-build:1.0-1.1
volumes:
- .:/src
working_dir: /src
command: /bin/bash -c "dotnet restore ./Travelingowe.sln && dotnet publish ./Travelingowe.sln -c Release -o ./obj/Docker/publish"