33 Star 127 Fork 31

摆码王子 / authmore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-compose.yml 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
摆码王子 提交于 2019-06-11 21:16 . fix bugs in jwt grant type
version: "3"
services:
platform:
image: jameszbl/authmore-platform
command: ["--spring.profiles.active=prod"]
environment:
- token_type: JWT
container_name: platform
restart: unless-stopped
networks:
- authmore
ports:
- "8086:8086"
depends_on:
- mongo
- redis
admin:
image: jameszbl/authmore-admin
command: ["--spring.profiles.active=prod"]
container_name: admin
restart: unless-stopped
networks:
- authmore
ports:
- "8083:8083"
depends_on:
- mongo
- redis
ui:
image: jameszbl/authmore-ui
container_name: authmore-ui
restart: unless-stopped
networks:
- authmore
ports:
- "3002:80"
depends_on:
- admin
redis:
image: redis
ports:
- "6379:6379"
restart: unless-stopped
container_name: authmore-redis
networks:
- authmore
volumes:
- redis-data:/data
mongo:
image: mongo
ports:
- "27017:27017"
restart: unless-stopped
container_name: authmore-mongo
networks:
- authmore
volumes:
- mongo-data:/data/db
- mongo-config:/data/configdb
networks:
authmore:
volumes:
mongo-data:
mongo-config:
redis-data:
Java
1
https://gitee.com/zbl1996/authmore.git
git@gitee.com:zbl1996/authmore.git
zbl1996
authmore
authmore
master

搜索帮助