Drone是一个采用Go开发,构建在Docker之上的持续集成平台。
系统要求
我们极力推荐运行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"