Ein Memo zum Einrichten des CICD-Tools GitLab mit Docker
https://www.gitlab.jp/
Referenz) ・ CE und EE https://www.gitlab.jp/install/ce-or-ee/
・ Funktionsvergleich der SaaS-Version https://about.gitlab.com/pricing/saas/feature-comparison/
https://about.gitlab.com/install/
Es gibt kein verwaltetes GitLab für die Verwendung von Cloud-Diensten. In AWS werden beispielsweise EC2 / RDS / ELB / S3 / Elasticache / IAM kombiniert, um ein GitLab zu erstellen.
https://docs.gitlab.com/ee/install/aws/
https://hub.docker.com/r/gitlab/gitlab-ee
--docker / docker-compose / docker swarm Jede Prozedur ist verfügbar
https://docs.gitlab.com/omnibus/docker/
―― Zum Beispiel sieht es im Fall von Docker so aus
sudo docker run --detach \
--hostname gitlab.example.com \
--publish 443:443 --publish 80:80 --publish 22:22 \
--name gitlab \
--restart always \
--volume $GITLAB_HOME/config:/etc/gitlab \
--volume $GITLAB_HOME/logs:/var/log/gitlab \
--volume $GITLAB_HOME/data:/var/opt/gitlab \
gitlab/gitlab-ee:latest
――Ich starte Docker nur mit dem offiziellen Image, aber es dauert einige Zeit, bis es gestartet wird. Selbst wenn ich sofort darauf zugreife, tritt der folgende Fehler auf.
Recommended Posts