🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay
2023-02-23 23:38:31 -05:00
parent b10c2c4167
commit f60b5e55e5
63 changed files with 437 additions and 384 deletions

17
scripts/gitlab-ce.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bash
mkdir -p mkdir -p /var/lib/docker/storage/gitlab/{config,logs,data} &&
chmod -Rf 777 /var/lib/docker/storage/gitlab
docker run -d \
--name gitlab \
--privileged \
--hostname gitlab \
--publish 3443:443 \
--publish 3001:80 \
--publish 7822:22 \
--restart always \
--volume /var/lib/docker/storage/gitlab/config:/etc/gitlab \
--volume /var/lib/docker/storage/gitlab/logs:/var/log/gitlab \
--volume /var/lib/docker/storage/gitlab/data:/var/opt/gitlab \
--volume /etc/letsencrypt:/etc/letsencrypt \
registry.casjay.in/latest/gitlab-ce:latest