mirror of https://github.com/ivanch/tcc.git
25 lines
436 B
YAML
25 lines
436 B
YAML
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"
|