| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
9年前发布

构建在Docker之上的持续集成平台:Drone

Drone是一个采用Go开发,构建在Docker之上的持续集成平台。

系统要求

  • Docker
  • AUFS

我们极力推荐运行Docker+AUFS存储驱动器。你可以通过以下命令使用来AUFS存储驱动器来验证Docker: sudo docker info | grep Driver:

数据库

缺省情况下,Drone会创建一个SQLite数据库。Drone还支持 Postgres 和 MySQL 数据库。 You can customize the database settings using the configuration options described in the Setup section.

Below are some example configurations that you can use as reference:

# to use postgres  [database]  driver="postgres"  datasource="host=127.0.0.1 user=postgres dbname=drone sslmode=disable"    # to use mysql  [database]  driver="mysql"  datasource="root@tcp(127.0.0.1:3306)/drone"
</div>

项目主页:http://www.open-open.com/lib/view/home/1417163843424

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1417163843424.html
Drone 项目构建