How to use Docker to deploy Gitee College Edition
As open source becomes more and more popular, more and more small and medium-sized enterprises, individuals and universities are beginning to choose to use Gitee to manage their projects. In order to better meet the needs of university users, Gitee has also launched Gitee University Edition. So, how to deploy Gitee College Edition? Next, this article will introduce how to use Docker to deploy Gitee College Edition in a Linux environment.
1. Preparation work
1. Install Docker and Docker-Compose tools
First install Docker and Docker-Compose tools, Docker-Compose is used to establish between containers Contacts and dependencies allow containers to communicate with each other. After installing Docker, you can install Docker-Compose through the following command:
sudo apt-get install docker-compose
2. Configure Gitee University Edition
After installing Docker and Docker-Compose tools, you need to create and configure Gitee University Edition related configuration files. Save the following content to a file named gitee.env:
## Gitee setting PRIVATE_TOKEN=此处填入你的私人令牌 CUSTOM_URL=此处填入你的域名(如果有) ENABLE_LDAP=false #设置为true启用LDAP服务 LDAP_SERVER=ldap://localhost:389 #LDAP服务地址 LDAP_UID=admin #LDAPbinddn用户名 LDAP_PWD=admin #LDAPbinddn密码 LDAP_SEARCH_DN='cn=xxx,dc=xxx,dc=xxx' #修改为相应的LDAP_SEARCH_DN LDAP_ATTRS=['uidNumber','gidNumber','homeDirectory'] #根据需要更改LDAP_ATTRS EXTERNAL_URL=http://localhost #修改为相应的地址
2. Create a data volume
1. Create the data volume required for Gitee College Edition
docker volume create gitee-data docker volume create gitee-db docker volume create gitee-redis
2 .Set the access permissions of the data volume
sudo chmod -R 777 /var/lib/docker/volumes/gitee-data sudo chmod -R 777 /var/lib/docker/volumes/gitee-db sudo chmod -R 777 /var/lib/docker/volumes/gitee-redis
3. Start Gitee College Edition
1. Create the docker-compose.yml file
Create docker- in the root directory of the project compose.yml file, save the following content to the file:
version : '2' services: gitee: image: giteegroup/gitee-ce:11.0.3-20200528205614 restart: always volumes: - gitee-data:/data/gitee/data - gitee-redis:/data/gitee/redis - gitee-db:/data/gitee/mysql environment: - CUSTOM_URL=$CUSTOM_URL - PRIVATE_TOKEN=$PRIVATE_TOKEN - EXTERNAL_URL=$EXTERNAL_URL - ENABLE_LDAP=$ENABLE_LDAP - LDAP_SERVER=$LDAP_SERVER - LDAP_UID=$LDAP_UID - LDAP_PWD=$LDAP_PWD - LDAP_SEARCH_DN=$LDAP_SEARCH_DN - LDAP_ATTRS=$LDAP_ATTRS ports: - '10022:22' - '80:80' - '443:443' networks: - gitee-net networks: gitee-net: volumes: gitee-data: gitee-db: gitee-redis:
2. Run docker-compose
docker-compose -f docker-compose.yml up -d
3. Wait for Gitee College Edition to start up
Finally, wait Gitee University Edition has been started. Access your domain name to enter the management page of Gitee University Edition.
Summary
Through the above steps, we can use Docker to deploy Gitee College Edition in a Linux environment and manage our projects conveniently. At the same time, Gitee College Edition also provides LDAP services, allowing college users to use their own accounts to log in and authenticate. I hope the above content can help everyone, thank you for reading!
The above is the detailed content of How to use Docker to deploy Gitee College Edition. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



GitHub is not difficult to learn. 1) Master the basic knowledge: GitHub is a Git-based version control system that helps track code changes and collaborative development. 2) Understand core functions: Version control records each submission, supporting local work and remote synchronization. 3) Learn how to use: from creating a repository to push commits, to using branches and pull requests. 4) Solve common problems: such as merge conflicts and forgetting to add files. 5) Optimization practice: Use meaningful submission messages, clean up branches, and manage tasks using the project board. Through practice and community communication, GitHub’s learning curve is not steep.

Git and GitHub are not the same thing. Git is a version control system, and GitHub is a Git-based code hosting platform. Git is used to manage code versions, and GitHub provides an online collaboration environment.

Microsoft does not own Git, but owns GitHub. 1.Git is a distributed version control system created by Linus Torvaz in 2005. 2. GitHub is an online code hosting platform based on Git. It was founded in 2008 and acquired by Microsoft in 2018.

On your resume, you should choose to write Git or GitHub based on your position requirements and personal experience. 1. If the position requires Git skills, highlight Git. 2. If the position values community participation, show GitHub. 3. Make sure to describe the usage experience and project cases in detail and end with a complete sentence.

Starting from Git is more suitable for a deep understanding of version control principles, and starting from GitHub is more suitable for focusing on collaboration and code hosting. 1.Git is a distributed version control system that helps manage code version history. 2. GitHub is an online platform based on Git, providing code hosting and collaboration capabilities.

Git is an open source distributed version control system that helps developers track file changes, work together and manage code versions. Its core functions include: 1) record code modifications, 2) fallback to previous versions, 3) collaborative development, and 4) create and manage branches for parallel development.

The reason for using GitHub to manage HTML projects is that it provides a platform for version control, collaborative development and presentation of works. The specific steps include: 1. Create and initialize the Git repository, 2. Add and submit HTML files, 3. Push to GitHub, 4. Use GitHubPages to deploy web pages, 5. Use GitHubActions to automate building and deployment. In addition, GitHub also supports code review, Issue and PullRequest features to help optimize and collaborate on HTML projects.

GitLab is better for some developers and teams because it provides a complete DevOps toolchain and powerful CI/CD capabilities. 1. GitLab's CI/CD function is integrated within the platform, supporting full process automation from code submission to deployment. 2. Its server-side rendering technology improves page loading speed for large projects. 3. GitLab's permission management system is more flexible and supports fine-grained control.
