mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-14 12:48:34 +08:00
28 lines
852 B
YAML
28 lines
852 B
YAML
# https://github.com/gitpod-samples/template-dotnet-core-cli-csharp
|
|
# https://www.gitpod.io/docs/introduction/languages/dotnet
|
|
# https://github.com/gitpod-samples/template-docker-compose
|
|
# https://www.gitpod.io/docs/references/gitpod-yml
|
|
# https://www.gitpod.io/docs/configure
|
|
# https://www.gitpod.io/docs/configure/workspaces/ports
|
|
|
|
image:
|
|
file: .gitpod.Dockerfile
|
|
|
|
# https://www.gitpod.io/docs/configure/workspaces/tasks#execution-order
|
|
# https://www.gitpod.io/docs/configure/projects/prebuilds
|
|
tasks:
|
|
- name: Init Docker-Compose
|
|
init: |
|
|
docker-compose pull
|
|
docker-compose -f ./deployments/docker-compose/infrastracture.yaml up -d
|
|
- name: Restore & Build
|
|
init: |
|
|
dotnet dev-certs https
|
|
dotnet restore
|
|
dotnet build
|
|
|
|
vscode:
|
|
extensions:
|
|
- ms-azuretools.vscode-docker
|
|
- muhammad-sammy.csharp
|