mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
28 lines
493 B
Markdown
28 lines
493 B
Markdown
# Deployments
|
|
|
|
Build an example app:
|
|
|
|
```
|
|
# Important!
|
|
# make sure you are at root of the repository
|
|
# in your terminal
|
|
|
|
# you can choose which app you want to build!
|
|
|
|
|
|
# aimvector/golang:1.0.0
|
|
docker-compose build golang
|
|
|
|
|
|
# aimvector/csharp:1.0.0
|
|
docker-compose build csharp
|
|
|
|
# aimvector/nodejs:1.0.0
|
|
docker-compose build nodejs
|
|
|
|
# aimvector/python:1.0.0
|
|
docker-compose build python
|
|
|
|
```
|
|
|
|
Take a look at example [deployment yaml](./deployment.yaml) |