https://github.com/andreyjvm/gitlab-demo
Collection of GitLab recipes
https://github.com/andreyjvm/gitlab-demo
gitlab
Last synced: 11 months ago
JSON representation
Collection of GitLab recipes
- Host: GitHub
- URL: https://github.com/andreyjvm/gitlab-demo
- Owner: AndreyJVM
- Created: 2025-01-14T15:42:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-27T20:45:26.000Z (about 1 year ago)
- Last Synced: 2025-06-03T01:43:31.945Z (about 1 year ago)
- Topics: gitlab
- Language: Dockerfile
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### GitLab CE
### Install docker and docker compose (Ubuntu)
```shell
sudo apt install curl -y
```
```shell
curl -fsSL https://get.docker.com -o get-docker.sh
```
```shell
sudo chmod +x get-docker.sh
```
```shell
sudo ./get-docker.sh
```
```shell
service docker status
# active (running)
```
```shell
sudo apt install docker-compose -y
```
### Docker compose
```shell
mkdir docker_gitlab_service; cd docker_gitlab_service
```
```shell
nano .env
```
```shell
nano docker-compose.yml
```
```yaml
docker compose up -d
```