1 Star 0 Fork 1

cmb-2018-09/dmall-todo-service

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
docker-compose.yml 528 Bytes
Copy Edit Raw Blame History
林文军 authored 2018-11-03 21:25 . first commit
version: '2'
services:
app:
image: openjdk:8u181-alpine
container_name: todo_app
ports:
- 8080:8080
volumes:
- ./build/libs:/app
command: ["java", "-jar", "/app/todos.jar"]
environment:
- SPRING_PROFILES_ACTIVE=dev
links:
- mysql
cpu_shares: 512
cpuset-cpus: 1
mysql:
image: mysql:5.7.19
container_name: todo_mysql
ports:
- 3306:3306
environment:
- LANG=C.UTF-8
- TERM=dumb
- MYSQL_ROOT_PASSWORD=pass
cpu_shares: 1024
cpuset-cpus: 1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cmb-2018-09/dmall-todo-service.git
git@gitee.com:cmb-2018-09/dmall-todo-service.git
cmb-2018-09
dmall-todo-service
dmall-todo-service
master

Search