Skip to content

Instantly share code, notes, and snippets.

@martin-g
Created January 20, 2021 08:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martin-g/187f5c785c6d4879b31a02d1f82c1cd3 to your computer and use it in GitHub Desktop.
Save martin-g/187f5c785c6d4879b31a02d1f82c1cd3 to your computer and use it in GitHub Desktop.
Fish shell script to start ConcourseCI web node
#!/usr/bin/env fish
set -x CONCOURSE_POSTGRES_HOST localhost
set -x CONCOURSE_POSTGRES_USER concourse_user
set -x CONCOURSE_POSTGRES_PASSWORD concourse_pass
set -x CONCOURSE_POSTGRES_DATABASE concourse
set -x CONCOURSE_EXTERNAL_URL http://web-node:8080
set -x CONCOURSE_X_FRAME_OPTIONS deny
set -x CONCOURSE_ADD_LOCAL_USER user:password
set -x CONCOURSE_MAIN_TEAM_LOCAL_USER user
set -x CONCOURSE_WORKER_BAGGAGECLAIM_DRIVER overlay
set -x CONCOURSE_SESSION_SIGNING_KEY ./keys/session_signing_key
set -x CONCOURSE_TSA_HOST_KEY ./keys/tsa_host_key
set -x CONCOURSE_TSA_AUTHORIZED_KEYS ./keys/authorized_worker_keys
set -x CONCOURSE_BIND_IP 0.0.0.0
set -x CONCOURSE_PEER_URL http://0.0.0.0:8080
set -x CONCOURSE_AUTH_DURATION 60m
set -x CONCOURSE_CLUSTER_NAME concourse-on-arm64
./bin/concourse web
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment