23 lines
641 B
YAML
23 lines
641 B
YAML
version: "3"
|
|
services:
|
|
csharp:
|
|
container_name: csharp # image name
|
|
image: <dockerhub account>/csharp_sdk:1.0.0
|
|
build:
|
|
context: ./c#
|
|
golang:
|
|
container_name: golang
|
|
image: <dockerhub account>/golang_sdk:1.0.0
|
|
build: ./golang
|
|
nodejs:
|
|
container_name: nodejs
|
|
image: <dockerhub account>/nodejs:1.0.0
|
|
build: ./nodejs
|
|
python:
|
|
container_name: python
|
|
image: <dockerhub account>/python:1.0.0
|
|
build: ./python
|
|
first-public-dockerhub-image:
|
|
container_name: first-public-dockerhub-image
|
|
image: cruxlight/first-public-dockerhub-image:latest
|
|
build: ./first-public-dockerhub-image |