From 2121429cd2458c28433f9c1502d013297459ed3a Mon Sep 17 00:00:00 2001 From: Yousaf K Hamza <31238282+yousafkhamza@users.noreply.github.com> Date: Thu, 30 Sep 2021 17:06:57 +0530 Subject: [PATCH 1/3] worked one with this --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index b7f9f63d..e3cb6ea3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,3 +24,5 @@ services: - CONCOURSE_EXTERNAL_URL - CONCOURSE_ADD_LOCAL_USER=admin:admin - CONCOURSE_MAIN_TEAM_LOCAL_USER=admin + - CONCOURSE_GARDEN_DNS_PROXY_ENABLE=true + - CONCOURSE_WORKER_GARDEN_DNS_PROXY_ENABLE=true From 07aa4d841653cfbf23a7bca9cd698024c7230cd0 Mon Sep 17 00:00:00 2001 From: Yousaf K Hamza <31238282+yousafkhamza@users.noreply.github.com> Date: Thu, 30 Sep 2021 17:13:17 +0530 Subject: [PATCH 2/3] changed some sort of things --- README.md | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c5f5214..11383990 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,45 @@ +# Changed by yousafkhamza + +## Concourse installation: +----------------------------- +Download From: wget https://raw.githubusercontent.com/starkandwayne/concourse-tutorial/master/docker-compose.yml + +Afterthen change URL with your public IP in YML file ie. (http:3.82.191.135:8080) +afterthen please add both of the lines on last (Already added in my forked repo) +`` +CONCOURSE_GARDEN_DNS_PROXY_ENABLE=true +CONCOURSE_WORKER_GARDEN_DNS_PROXY_ENABLE=true +`` +#### Please exicute this command also +`` +iptables -P FORWARD ACCEPT +`` + +> Concourse CI Installation with the help of docker + +`` +docker-compose up -d +`` +--- +### After the installation Please download fly from your installation: +`` +wget "http://youriphere:8080/api/v1/cli?arch=amd64&platform=linux" -O fly +chmod +x fly +mv fly /usr/bin +`` + +--- +### Fly Admin User initilisation +`` +fly -t env login -u admin -p admin +fly --t env sync +`` + +> cat ~/.flyrc <-- you can change the same here once your have already done. + +This changes made by yousaf k hamza...... + +--------- # Concourse Tutorial Learn to use https://concourse-ci.org with this linear sequence of tutorials. Learn each concept that builds on the previous concept. @@ -27,4 +69,3 @@ mkdocs serve ``` View the site and live changes at https://localhost:8000. - From e7e5437cad3e6565bde8f5d1b1948cc2ae38a9e4 Mon Sep 17 00:00:00 2001 From: Yousaf K Hamza <31238282+yousafkhamza@users.noreply.github.com> Date: Thu, 30 Sep 2021 17:14:13 +0530 Subject: [PATCH 3/3] Update README.md --- README.md | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 11383990..ce9513c6 100644 --- a/README.md +++ b/README.md @@ -6,34 +6,37 @@ Download From: wget https://raw.githubusercontent.com/starkandwayne/concourse-tu Afterthen change URL with your public IP in YML file ie. (http:3.82.191.135:8080) afterthen please add both of the lines on last (Already added in my forked repo) -`` + +``` CONCOURSE_GARDEN_DNS_PROXY_ENABLE=true CONCOURSE_WORKER_GARDEN_DNS_PROXY_ENABLE=true -`` +``` + #### Please exicute this command also -`` +``` iptables -P FORWARD ACCEPT -`` +``` > Concourse CI Installation with the help of docker -`` +``` docker-compose up -d -`` +``` + --- ### After the installation Please download fly from your installation: -`` +``` wget "http://youriphere:8080/api/v1/cli?arch=amd64&platform=linux" -O fly chmod +x fly mv fly /usr/bin -`` +``` --- ### Fly Admin User initilisation -`` +``` fly -t env login -u admin -p admin fly --t env sync -`` +``` > cat ~/.flyrc <-- you can change the same here once your have already done.