https://github.com/plh97/docker-learn
🐳lots of little project isolate each other here
https://github.com/plh97/docker-learn
autobuild docker
Last synced: 2 months ago
JSON representation
🐳lots of little project isolate each other here
- Host: GitHub
- URL: https://github.com/plh97/docker-learn
- Owner: plh97
- Created: 2019-01-13T14:05:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-22T04:39:39.000Z (over 7 years ago)
- Last Synced: 2025-10-11T19:11:33.719Z (9 months ago)
- Topics: autobuild, docker
- Language: JavaScript
- Homepage: https://github.com/pengliheng/pengliheng.github.io/issues/64
- Size: 39.6 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 一键部署以下项目
- [x] nodejs 开发体验 慢
- [x] python
- [x] nginx
- [x] apache/httpd
- [x] nodejs+mongo
- [x] python+redis
- [x] tomcat
- [x] egg.js 开发体验 慢
- [x] create-react-app 开发体验 极速
- [x] golang 开发体验 1.无法监听项目下文件变更,实现动态热更golang项目。2.可以规避的问题
- [x] vue-cli 开发体验 快
- [x] tensorflow 地址: [docker pull pengliheng/tf](https://cloud.docker.com/repository/docker/pengliheng/tf/general)
### `docker build --tag=` 开发环境部署
```bash
docker build --tag=pengliheng/ # 新建docker image
docker run --rm -it -d -v $(pwd):/code -w -p 80:80 /code pengliheng/ # 在image层下新建一个container
docker ps -a -s # 查询container id
docker attach # hack 进入container 进行开发
```
### `docker-composer up` 生产环境部署
需要删除image才能修改之前提交的参数,,,,或许重新build一次可以改善问题...