add docker-compose

This commit is contained in:
José Henrique 2023-09-18 23:44:09 -03:00
parent 4ea131299a
commit 1f63985364
1 changed files with 24 additions and 0 deletions

24
docker-compose.yml Normal file
View File

@ -0,0 +1,24 @@
version: "3"
services:
tcc-aspnet:
image: tcc:aspnet
container_name: tcc-aspnet
build: ./ASP.NET
restart: always
ports:
- "9081:80"
tcc-flask:
image: tcc:flask
container_name: tcc-flask
build: ./FlaskAPI
restart: always
ports:
- "9082:5000"
tcc-actix:
image: tcc:actix
container_name: tcc-actix
build: ./ActixAPI
restart: always
ports:
- "9083:9090"