Fixing a couple things

This commit is contained in:
IamTheFij 2017-04-19 01:41:25 +00:00
parent 874e819351
commit 0e2ec4a9d1
4 changed files with 31 additions and 6 deletions

View File

@ -1,5 +1,5 @@
{ {
"id": "io.concourse.cloudron", "id": "ci.concourse.cloudron",
"title": "Concourse", "title": "Concourse",
"description": "file://DESCRIPTION.md", "description": "file://DESCRIPTION.md",
"tagline": "CI that scales with your project", "tagline": "CI that scales with your project",

View File

@ -5,7 +5,7 @@ default: build
build: build:
cloudron build cloudron build
install: build install:
cloudron install cloudron install
uninstall: uninstall:
@ -20,5 +20,5 @@ debug:
no-debug: no-debug:
cloudron configure --no-debug cloudron configure --no-debug
startworker: run-worker:
./concourse_worker.sh ./concourse_worker.sh

View File

@ -1,6 +1,30 @@
# concourse-app # Concourse Cloudron App
Cloudron packaged version of Concourse ATC/TSA This repository contains the Cloudron app package source for [Concourse](https://concourse.ci/) ATC and TSA.
## Installation
[![Install](https://cloudron.io/img/button.svg)](https://cloudron.io/button.html?app=ci.concourse.cloudron)
or using the [Cloudron command line tooling](https://cloudron.io/references/cli.html)
```
cloudron install --appstore-id ci.concourse.cloudron
```
## Building
The app package can be built using the [Cloudron command line tooling](https://cloudron.io/references/cli.html).
```
make build # Builds the Cloudron app
make install # Installs the app into Cloudron and runs it
make run # Ensures app is installed and prints all logs and begins tailing them
make uninstall # Uninstalls the app from Cloudron
make debug # Changes the current configuration to debug to set filesystem to read/write
make no-debug # Changes the current configuration out of debug
make run-worker # Runs a worker in an attached process
```
### Legal ### Legal

View File

@ -5,7 +5,8 @@
tsa_container=$(cloudron list | awk '/io.concourse.cloudron/{print $1;}') tsa_container=$(cloudron list | awk '/io.concourse.cloudron/{print $1;}')
tsa_hostname=$(cloudron exec --app $tsa_container env | grep HOSTNAME | sed s/.*=//) tsa_hostname=$(cloudron exec --app $tsa_container env | grep HOSTNAME | sed s/.*=//)
tsa_port=$(cloudron exec --app $tsa_container env | grep TSA_PORT | sed s/.*=//) tsa_port=$(cloudron exec --app $tsa_container env | grep TSA_PORT | sed s/.*=//)
sudo docker run -d \ docker run \
--rm \
--name concourse_worker \ --name concourse_worker \
--privileged \ --privileged \
--network cloudron \ --network cloudron \