mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
19 lines
403 B
YAML
19 lines
403 B
YAML
version: "3"
|
|
services:
|
|
csharp:
|
|
container_name: csharp
|
|
image: aimvector/csharp:1.0.0
|
|
build: ./c#
|
|
golang:
|
|
container_name: golang
|
|
image: aimvector/golang:1.0.0
|
|
build: ./golang
|
|
nodejs:
|
|
container_name: nodejs
|
|
image: aimvector/nodejs:1.0.0
|
|
build: ./nodejs
|
|
python:
|
|
container_name: python
|
|
image: aimvector/python:1.0.0
|
|
build: ./python
|