diff --git a/dist/drone/DEBIAN/conffiles b/dist/drone/DEBIAN/conffiles index 980d34ea..fd633dbd 100644 --- a/dist/drone/DEBIAN/conffiles +++ b/dist/drone/DEBIAN/conffiles @@ -1,2 +1,2 @@ /etc/init/drone.conf -/etc/drone/drone.toml +/etc/drone/drone.toml \ No newline at end of file diff --git a/doc/install-docker.md b/doc/install-docker.md index 97146c94..b1630d04 100644 --- a/doc/install-docker.md +++ b/doc/install-docker.md @@ -34,3 +34,11 @@ sudo docker run \ -e DRONE_GITHUB_SECRET=1ac1eae5ff1b490892f5 \ --name=drone drone/drone ``` + +### Logging + +When running Drone inside Docker the logs are sent to stdout / stderr. You can view the log output by running the following command: + +```bash +docker logs drone +``` diff --git a/doc/install-ubuntu.md b/doc/install-ubuntu.md index d3e89cd4..9e8fd331 100644 --- a/doc/install-ubuntu.md +++ b/doc/install-ubuntu.md @@ -20,7 +20,7 @@ wget -qO- https://get.docker.com/ | sh Once the environment is prepared you can install Drone from a debian file. Drone will automatically start on port 80. Edit /etc/drone/drone.toml to modify the port. ```bash -wget downloads.drone.io/master/drone.deb +wget downloads.drone.io/0.4.0/drone.deb sudo dpkg --install drone.deb ``` @@ -36,4 +36,4 @@ sudo restart drone ### Logging -The Drone service logs are written to `/var/log/upstart/drone.log`. \ No newline at end of file +The Drone service logs are written to `/var/log/upstart/drone.log`.