-
由 openaiops 创作于59cf59f4
quickstart-docker-compose.yml 11.24 KiB
version: '3'
services:
# rabbitmq:
# image: rabbitmq:management
# ports:
# - 5672:5672
# - 15672:15672
# networks:
# - my-network
# kafka:
# container_name: kafka
# image: spotify/kafka:latest
# ports:
# - 2181:2181
# - 9092:9092
# networks:
# - my-network
# zipkin:
# image: openzipkin/zipkin
# ports:
# - 9411:9411
# networks:
# - my-network
redis:
image: redis
ports:
- 6379:6379
networks:
- my-network
ts-ui-dashboard:
image: ${NAMESPACE}/ts-ui-dashboard:${TAG}
restart: always
ports:
- 8080:8080
networks:
- my-network
ts-auth-service:
image: ${NAMESPACE}/ts-auth-service:${TAG}
restart: always
ports:
- 12340:12340
networks:
- my-network
ts-auth-mysql:
image: mysql:5.7
networks:
- my-network
ts-user-service:
image: ${NAMESPACE}/ts-user-service:${TAG}
restart: always
ports:
- 12342:12342
networks:
- my-network
ts-user-mysql:
image: mysql:5.7
networks:
- my-network
ts-verification-code-service:
image: ${NAMESPACE}/ts-verification-code-service:${TAG}