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:
|
2023-10-03 18:31:33 +00:00
|
|
|
- "9083:5000"
|
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpus: '1'
|
|
|
|
memory: 1GB
|
|
|
|
tcc-express:
|
|
|
|
image: tcc:express
|
|
|
|
container_name: tcc-express
|
2023-11-04 20:12:49 +00:00
|
|
|
build: ./Express
|
2023-10-03 18:31:33 +00:00
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- "9084:5000"
|
2023-09-24 13:56:01 +00:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpus: '1'
|
|
|
|
memory: 1GB
|
2023-10-30 23:34:20 +00:00
|
|
|
tcc-spring:
|
|
|
|
image: tcc:spring
|
|
|
|
container_name: tcc-spring
|
2023-11-04 20:12:49 +00:00
|
|
|
build: ./Spring
|
2023-10-30 23:34:20 +00:00
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- "9085:8080"
|
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpus: '1'
|
|
|
|
memory: 1GB
|