tcc/docker-compose.yml

41 lines
697 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:
- "9083:9090"
2023-09-24 13:56:01 +00:00
deploy:
resources:
limits:
cpus: '1'
memory: 1GB