2020-12-07 16:02:29 +11:00
|
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
csharp:
|
|
|
|
container_name: csharp # image name
|
2020-12-07 16:11:54 +11:00
|
|
|
image: cruxlight/csharp_sdk:1.0.0
|
2020-12-07 16:02:29 +11:00
|
|
|
build:
|
2021-02-08 13:48:57 +11:00
|
|
|
context: ./c#
|
|
|
|
target: prod
|
2021-02-08 11:30:04 +11:00
|
|
|
volumes:
|
|
|
|
- ./c#/src/:/work
|
|
|
|
ports:
|
|
|
|
- 5500:5000
|
2020-12-07 16:02:29 +11:00
|
|
|
golang:
|
|
|
|
container_name: golang
|
2020-12-07 16:11:54 +11:00
|
|
|
image: cruxlight/golang_sdk:1.0.0
|
2021-02-08 13:48:57 +11:00
|
|
|
build:
|
|
|
|
context: ./golang
|
|
|
|
target: prod
|
2021-02-08 11:40:44 +11:00
|
|
|
volumes:
|
|
|
|
- ./golang/src/:/work
|
|
|
|
ports:
|
|
|
|
- 5501:5000
|
2020-12-07 16:02:29 +11:00
|
|
|
nodejs:
|
|
|
|
container_name: nodejs
|
2020-12-07 16:11:54 +11:00
|
|
|
image: cruxlight/nodejs:1.0.0
|
2021-02-08 13:48:57 +11:00
|
|
|
build:
|
|
|
|
context: ./nodejs
|
|
|
|
target: prod
|
2021-02-08 11:50:13 +11:00
|
|
|
volumes:
|
|
|
|
- ./nodejs/src/:/work
|
|
|
|
ports:
|
|
|
|
- 5502:5000
|
2021-02-08 11:57:52 +11:00
|
|
|
python: #docker run -it -v ${PWD}:/work -w /work -p 5003:5000 aimvector/python:1.0.0 /bin/sh
|
2020-12-07 16:02:29 +11:00
|
|
|
container_name: python
|
2020-12-07 16:11:54 +11:00
|
|
|
image: cruxlight/python:1.0.0
|
2021-02-08 13:48:57 +11:00
|
|
|
build:
|
|
|
|
context: ./python
|
|
|
|
target: prod
|
2021-02-08 11:57:52 +11:00
|
|
|
volumes:
|
|
|
|
- ./python/src/:/work
|
|
|
|
ports:
|
|
|
|
- 5503:5000
|
2020-12-07 16:02:29 +11:00
|
|
|
first-public-dockerhub-image:
|
|
|
|
container_name: first-public-dockerhub-image
|
|
|
|
image: cruxlight/first-public-dockerhub-image:latest
|
|
|
|
build: ./first-public-dockerhub-image
|