docker-based-development-guide/docker-compose.yaml

46 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2021-01-27 23:42:53 +11:00
version: "3.4"
2020-12-07 16:02:29 +11:00
services:
csharp:
container_name: csharp # image name
image: cruxlight/csharp_prod:1.0.0
2020-12-07 16:02:29 +11:00
build:
2020-12-08 13:54:06 +11:00
context: ./c#
target: prod
volumes:
- ./c#/src/:/work
ports:
- 5500:5000
2020-12-07 16:02:29 +11:00
golang:
container_name: golang
image: cruxlight/golang_prod:1.0.0
2020-12-08 13:54:06 +11:00
build:
context: ./golang
target: prod
volumes:
- ./golang/src/:/work
ports:
- 5501:5000
2020-12-07 16:02:29 +11:00
nodejs:
container_name: nodejs
image: cruxlight/nodejs_prod:1.0.0
2020-12-08 13:54:06 +11:00
build:
context: ./nodejs
target: prod
volumes:
- ./nodejs/src/:/work
ports:
- 5502:5000
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
image: cruxlight/python_prod:1.0.0
build:
context: ./python
target: prod
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