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.
32 lines
903 B
32 lines
903 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=120.26.168.56:8052 |
|
- GITEA__database__NAME=gitea |
|
- GITEA__database__USER=root |
|
- GITEA__database__PASSWD=kanglai@2022 |
|
hostname: gitea-server |
|
restart: always |
|
volumes: |
|
- gitea:/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
|
|
|