Skip to content

Commit

Permalink
[bitnami/concourse] Release concourse-7.11.2-debian-12-r18 (#71299)
Browse files Browse the repository at this point in the history
Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
  • Loading branch information
bitnami-bot authored Aug 24, 2024
1 parent db96cf1 commit c5c865a
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bitnami/concourse/7/debian-12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ ARG TARGETARCH

LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2024-07-25T08:57:29Z" \
org.opencontainers.image.created="2024-08-24T10:36:20Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/concourse/README.md" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="7.11.2-debian-12-r17" \
org.opencontainers.image.ref.name="7.11.2-debian-12-r18" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/concourse" \
org.opencontainers.image.title="concourse" \
org.opencontainers.image.vendor="Broadcom, Inc." \
Expand Down
63 changes: 63 additions & 0 deletions bitnami/concourse/docker-compose-testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Copyright Broadcom, Inc. All Rights Reserved.
# SPDX-License-Identifier: APACHE-2.0

version: '2'
services:
postgresql:
image: docker.io/bitnami/postgresql:15
environment:
- POSTGRESQL_DATABASE=bitnami_concourse
- POSTGRESQL_USERNAME=bn_concourse
- POSTGRESQL_PASSWORD=bitnami1
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- 'postgresql_data:/bitnami/postgresql'
concourse:
image: concourse
command: concourse web
environment:
- CONCOURSE_RUNTIME=containerd
- CONCOURSE_POSTGRES_DATABASE=bitnami_concourse
- CONCOURSE_POSTGRES_USER=bn_concourse
- CONCOURSE_POSTGRES_PASSWORD=bitnami1
- CONCOURSE_SESSION_SIGNING_KEY=/bitnami/concourse/concourse_keys/session_signing_key
- CONCOURSE_TSA_AUTHORIZED_KEYS=/bitnami/concourse/concourse_keys/authorized_worker_keys
- CONCOURSE_TSA_HOST_KEY=/bitnami/concourse/concourse_keys/tsa_host_key
- CONCOURSE_LOG_LEVEL=debug
- CONCOURSE_POSTGRES_HOST=postgresql
- CONCOURSE_EXTERNAL_URL=http://localhost:8080
- CONCOURSE_ADD_LOCAL_USER=user:bitnami,guest:guest
- CONCOURSE_MAIN_TEAM_LOCAL_USER=user
- CONCOURSE_CLUSTER_NAME=dev
- CONCOURSE_ENABLE_PIPELINE_INSTANCES=true
- CONCOURSE_ENABLE_ACROSS_STEP=true
- CONCOURSE_ENABLE_CACHE_STREAMED_VOLUMES=true
volumes:
- 'concourse_web_data:/bitnami/concourse'
- './concourse_keys/authorized_worker_keys:/bitnami/concourse/concourse_keys/authorized_worker_keys'
- './concourse_keys/tsa_host_key:/bitnami/concourse/concourse_keys/tsa_host_key'
- './concourse_keys/session_signing_key:/bitnami/concourse/concourse_keys/session_signing_key'
concourse_worker:
image: concourse
command: concourse worker
privileged: true
environment:
- CONCOURSE_RUNTIME=containerd
- CONCOURSE_TSA_PUBLIC_KEY=/bitnami/concourse/concourse_keys/tsa_host_key.pub
- CONCOURSE_TSA_WORKER_PRIVATE_KEY=/bitnami/concourse/concourse_keys/worker_key
- CONCOURSE_LOG_LEVEL=debug
- CONCOURSE_TSA_HOST=concourse:2222
- CONCOURSE_BIND_IP=0.0.0.0
- CONCOURSE_BAGGAGECLAIM_BIND_IP=0.0.0.0
- CONCOURSE_BAGGAGECLAIM_DRIVER=overlay
- CONCOURSE_CONTAINERD_DNS_PROXY_ENABLE=true
- CONCOURSE_WEB_PUBLIC_DIR=/opt/bitnami/concourse/web/public
- CONCOURSE_WORK_DIR=/opt/bitnami/concourse
volumes:
- './concourse_keys/worker_key:/bitnami/concourse/concourse_keys/worker_key'
- './concourse_keys/tsa_host_key.pub:/bitnami/concourse/concourse_keys/tsa_host_key.pub'
volumes:
postgresql_data:
driver: local
concourse_web_data:
driver: local

0 comments on commit c5c865a

Please sign in to comment.