2023-09-19 02:44:09 +00:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
tcc-aspnet:
|
|
|
|
image: tcc:aspnet
|
|
|
|
container_name: tcc-aspnet
|
|
|
|
build: ./ASP.NET
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- "9081:80"
|
2023-09-24 13:56:01 +00:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpus: '1'
|
|
|
|
memory: 1GB
|
2023-09-19 02:44:09 +00:00
|
|
|
tcc-flask:
|
|
|
|
image: tcc:flask
|
|
|
|
container_name: tcc-flask
|
|
|
|
build: ./FlaskAPI
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- "9082:5000"
|
2023-09-24 13:56:01 +00:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpus: '1'
|
|
|
|
memory: 1GB
|
2023-09-19 02:44:09 +00:00
|
|
|
tcc-actix:
|
|
|
|
image: tcc:actix
|
|
|
|
container_name: tcc-actix
|
|
|
|
build: ./ActixAPI
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- "9083:9090"
|
2023-09-24 13:56:01 +00:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpus: '1'
|
|
|
|
memory: 1GB
|
2023-09-25 22:58:07 +00:00
|
|
|
tcc-express:
|
|
|
|
image: tcc:express
|
|
|
|
container_name: tcc-express
|
|
|
|
build: ./tcc-express
|
|
|
|
restart: always
|
|
|
|
ports:
|
2023-09-25 23:07:14 +00:00
|
|
|
- "9084:5000"
|
2023-09-25 22:58:07 +00:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpus: '1'
|
|
|
|
memory: 1GB
|