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!

This article provides a guide to Git management, covering GUI tools (Sourcetree, GitKraken, etc.), essential commands (git init, git clone, git add, git commit, etc.), branch management best practices (feature branches, pull requests), and merge con

This article explains the difference between Git's commit and push commands. git commit saves changes locally, while git push uploads these committed changes to a remote repository. The article highlights the importance of understanding this distin

This guide explains how to push a single Git commit to a remote branch. It details using a temporary branch to isolate the commit, pushing this branch to the remote, and then optionally deleting the temporary branch. This method avoids conflicts and

This article addresses common Git commit failures. It details troubleshooting steps for issues like untracked files, unstaged changes, merge conflicts, and pre-commit hooks. Solutions and preventative measures are provided to ensure smoother Git wo

This article details methods for viewing Git commit content. It focuses on using git show to display commit messages, author info, and changes (diffs), git log -p for multiple commits' diffs, and cautions against directly checking out commits. Alt

This article explains the distinct roles of git add and git commit in Git. git add stages changes, preparing them for inclusion in the next commit, while git commit saves the staged changes to the repository's history. This two-step process enables

This beginner's guide introduces Git, a version control system. It covers basic commands (init, add, commit, status, log, branch, checkout, merge, push, pull) and resolving merge conflicts. Best practices for efficient Git use, including clear comm

This article introduces Git, a distributed version control system. It highlights Git's advantages over centralized systems, such as offline capabilities and efficient branching/merging for enhanced collaboration. The article also details learning r


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

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
