tcc/docker-compose.yml

52 lines
929 B
YAML
Raw Normal View History

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
build: ./tcc-express
restart: always
ports:
- "9084:5000"
2023-09-24 13:56:01 +00:00
deploy:
resources:
limits:
cpus: '1'
memory: 1GB