Check out my first novel, midnight's simulacra!

Drone: Difference between revisions

From dankwiki
(Created page with "Drone is a Docker-native CI server. I run one [https://drone.dsscaw.com:4443/ this machine] at port 4443. So far as I've seen, the Drone documentation all steers you via...")
 
No edit summary
Line 6: Line 6:
* <tt>git clone https://github.com/drone/drone.git</tt>
* <tt>git clone https://github.com/drone/drone.git</tt>
* <tt>go install -tags "oss nolimit" github.com/drone/drone/cmd/drone-server</tt>
* <tt>go install -tags "oss nolimit" github.com/drone/drone/cmd/drone-server</tt>
Dockerfiles to build an Alpine-based image can be found [https://github.com/drone/drone/tree/master/docker here].


==See also==
==See also==
* "[https://blog.almeroth.com/ Build & Run: Drone (Open Source Edition)]" by Jon Almeroth, 2020-05-12
* "[https://blog.almeroth.com/ Build & Run: Drone (Open Source Edition)]" by Jon Almeroth, 2020-05-12

Revision as of 07:38, 4 July 2020

Drone is a Docker-native CI server. I run one this machine at port 4443.

So far as I've seen, the Drone documentation all steers you via omission towards the "Enterprise" variant of the product (downloaded as a Docker image). I discovered that this Enterprise version had a 5000 build limit the day I hit 5000 builds. At this point, it ceases to process new builds. As this happened 2020-07-04, Independence Day here in America, I promptly declared my independence and prepared an installation of the "OSS" variant.

OSS version

Dockerfiles to build an Alpine-based image can be found here.

See also