https://github.com/gtsigner/laravel-scrum-dev-paas
Laravel后端服务,提供团队协作管理平台的后端业务逻辑
https://github.com/gtsigner/laravel-scrum-dev-paas
docker laravel scrum-board
Last synced: 4 months ago
JSON representation
Laravel后端服务,提供团队协作管理平台的后端业务逻辑
- Host: GitHub
- URL: https://github.com/gtsigner/laravel-scrum-dev-paas
- Owner: gtsigner
- License: other
- Created: 2018-03-10T11:59:50.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-10T12:05:42.000Z (about 7 years ago)
- Last Synced: 2025-02-10T01:41:43.291Z (4 months ago)
- Topics: docker, laravel, scrum-board
- Language: PHP
- Size: 7.96 MB
- Stars: 20
- Watchers: 4
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Overview
客户端项目请查看:
https://github.com/zhaojunlike/vue-scrum-task-client### Containers
- 1.nginx
- 2.mysql-db
- 3.redis-db
- 4.php-fpm
- 5.composer
- 6.mongo-db
- 7.visualizer其中不需要的镜像可以注释掉
## QuickStart
### Install Docker
安装Docker Ce
```bash
$bash ./app/tools/docker-installer.sh
```
### Install docker-compose
```bash
$cp ./docker-compose /usr/local/bin/
$chmod +x /usr/lcoal/bin/docker-compose
```
## Usage默认启动方式,这种方式适用于本地测试开发环境,暴漏了数据库端口redis端口方便调试
1.docker-compose up --build```bash
docker-compose up -d
docker exec -it $phpContainerId bash
#bash > cd /app/backend
#bash > composer install
#bash > php artisan db:seed
```
## Future