mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
22 lines
650 B
Docker
22 lines
650 B
Docker
# Copyright (c) 2020 Gitpod GmbH. All rights reserved.
|
|
# Licensed under the MIT License. See License-MIT.txt in the project root for license information.
|
|
|
|
FROM rancher/k3s:v1.21.2-k3s1
|
|
|
|
ADD https://github.com/krallin/tini/releases/download/v0.19.0/tini-static /tini
|
|
RUN chmod +x /tini
|
|
|
|
VOLUME /var/gitlab/gitaly
|
|
VOLUME /var/gitlab/minio
|
|
VOLUME /var/gitlab/postgresql
|
|
VOLUME /var/gitlab/redis
|
|
|
|
VOLUME /var/gitlab/secrets-backup
|
|
|
|
COPY gitlab-helm-installer.yaml /var/lib/rancher/k3s/server/manifests/
|
|
COPY persistent-volumes.yaml /var/lib/rancher/k3s/server/manifests/
|
|
|
|
COPY entrypoint.sh /entrypoint
|
|
|
|
ENTRYPOINT [ "/tini", "-g", "--", "/entrypoint" ]
|