You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
599 B
29 lines
599 B
# 全局运行环境, docker-compose 文件
|
|
## mysql 数据库
|
|
version: "3.8"
|
|
services:
|
|
mysql:
|
|
image: mysql:8.0
|
|
ports:
|
|
- 3306:3306
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: root
|
|
MYSQL_DATABASE: usercenter
|
|
## redis 缓存
|
|
redis:
|
|
image: redis:latest
|
|
ports:
|
|
- 6379:6379
|
|
volumes:
|
|
- ./redis/data:/data
|
|
command: redis-server --appendonly yes
|
|
## etcd 注册中心
|
|
etcd:
|
|
image: bitnami/etcd:latest
|
|
ports:
|
|
- 2379:2379
|
|
- 2380:2380
|
|
volumes:
|
|
- ./etcd/data:/bitnami
|
|
environment:
|
|
ALLOW_NONE_AUTHENTICATION: "yes"
|
|
|