mirror of https://github.com/ivanch/tcc.git
add docker-compose
This commit is contained in:
parent
4ea131299a
commit
7a29aa0914
|
@ -0,0 +1,24 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
tcc-aspnet:
|
||||||
|
image: tcc:aspnet
|
||||||
|
container_name: tcc-aspnet
|
||||||
|
build: ./ActixAPI
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "9081:80"
|
||||||
|
tcc-flask:
|
||||||
|
image: tcc:flask
|
||||||
|
container_name: tcc-flask
|
||||||
|
build: ./ActixAPI
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "9082:5000"
|
||||||
|
tcc-actix:
|
||||||
|
image: tcc:actix
|
||||||
|
container_name: tcc-actix
|
||||||
|
build: ./ActixAPI
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "9083:9090"
|
Loading…
Reference in New Issue