我們極力推薦運行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"