You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
970 B
33 lines
970 B
# PROJECT: 康来生物有限公司kicc(智慧冷链)分布式架构平台 |
|
# VERSION: 1.0.0 |
|
# Author: 康来生物科技有限公司-王翔 |
|
|
|
# 更多信息请参考官网:https://docs.gitea.io/en-us/install-with-docker/ |
|
version: "3" |
|
services: |
|
|
|
# git私有库,公司代码管理服务器 |
|
gitea-server: |
|
image: gitea/gitea:1.16.3 |
|
container_name: gitea-server |
|
environment: |
|
- GITEA__database__DB_TYPE=mysql |
|
- GITEA__database__HOST=124.71.99.36:3158 |
|
- GITEA__database__NAME=db_gitea |
|
- GITEA__database__USER=u_git_account |
|
- GITEA__database__PASSWD=#Gitea@&2021% |
|
hostname: gitea-server |
|
restart: always |
|
volumes: |
|
#- gitea:/data |
|
- /usr/software/dockerDatabase/gitea/data:/data |
|
- /usr/software/dockerDatabase/gitea/timezone:/etc/timezone:ro |
|
- /usr/software/dockerDatabase/gitea/localtime:/etc/localtime:ro |
|
ports: |
|
- 8066:3000 |
|
- 8065:22 |
|
|
|
# 配置卷 |
|
volumes: |
|
gitea: |
|
driver: local
|
|
|