Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flowci/docker-install
How to install flow.ci from docker
https://github.com/flowci/docker-install
cicd devops docker flow
Last synced: 3 days ago
JSON representation
How to install flow.ci from docker
- Host: GitHub
- URL: https://github.com/flowci/docker-install
- Owner: FlowCI
- License: mit
- Created: 2017-10-19T06:06:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-07T13:27:56.000Z (about 1 year ago)
- Last Synced: 2025-01-20T10:08:37.588Z (10 days ago)
- Topics: cicd, devops, docker, flow
- Language: Shell
- Homepage: https://flowci.github.io
- Size: 14.4 MB
- Stars: 405
- Watchers: 20
- Forks: 39
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Install from Docker within a minute | [1 分钟从 Docker 安装](./README_CN.md)
## Per-requirements
- [Docker](https://docs.docker.com/install/) installed
- [Docker-Compose](https://docs.docker.com/compose/install/) installed
- Mac/Linux/Windows
- Recommand 4 Cores, 8G RAM, and more than 60G free disk space## Install
```bash
git clone https://github.com/FlowCI/docker-install.git flow-docker
cd flow-docker
./server.sh start# ./server.sh help for more detail
```After all services started, open web browser with url 'http://localhost:2015'
![start](https://github.com/FlowCI/docs/raw/master/_images/start_server.gif)
> The default ports and data path can be changed from [server.sh](./server.sh) and [server.yml](./server.yml)
# Install on Kubernetes by Helm Chart
```bash
helm repo add flow.ci https://flowci.github.io/helm-chart/
helm repo updatekubectl create ns flowci
helm install flow.ci flow.ci/flow.ci -n flowci
```