Create ubuntu.md
This commit is contained in:
parent
f0cc7a211d
commit
1aa4abe0ff
1 changed files with 41 additions and 0 deletions
41
doc/setup/ubuntu.md
Normal file
41
doc/setup/ubuntu.md
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Ubuntu
|
||||
|
||||
These are the instructions for running Drone on Ubuntu . We recommend using Ubuntu 14.04, the latest stable distribution. We also highly recommend using AUFS as the default file system driver for Docker.
|
||||
|
||||
## System Requirements
|
||||
|
||||
```
|
||||
sudo apt-get update
|
||||
sudo apt-get install libsqlite3-dev
|
||||
```
|
||||
|
||||
The default Drone installation also assumes Docker is installed locally on the host machine. To install Docker on Ubuntu please see the official [installation guide](https://docs.docker.com/installation/ubuntulinux/).
|
||||
|
||||
## Installation
|
||||
|
||||
Once the environment is prepared you can install Drone from a debian file:
|
||||
|
||||
```
|
||||
wget downloads.drone.io/0.4.0/drone.deb
|
||||
sudo dpkg --install drone.deb
|
||||
```
|
||||
|
||||
## Settings
|
||||
|
||||
Drone uses environment variables for runtime settings and configuration, such as GitHub, GitLab, plugins and more. These settings are loaded from `/etc/drone/dronerc`.
|
||||
|
||||
## Starting, Stopping, Logs
|
||||
|
||||
Commands to start, stop and restart Drone:
|
||||
|
||||
```
|
||||
sudo start drone
|
||||
sudo stop drone
|
||||
sudo restart drone
|
||||
```
|
||||
|
||||
And to view the Drone logs:
|
||||
|
||||
```
|
||||
sudo cat /var/log/upstart/drone.log
|
||||
```
|
Loading…
Reference in a new issue