Drone: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 31: Line 31:
{|
{|
| valign="top" |
| valign="top" |
* [https://community.harness.io/t/resolved-source-code-management-is-not-configured-error/10237 Drone » SCM System not configured]
* [https://docs.drone.io/pipeline/digitalocean/overview/ Drone » Digital Ocean Pipelines]
* [https://docs.drone.io/pipeline/digitalocean/overview/ Drone » Digital Ocean Pipelines]
* [https://docs.drone.io/pipeline/macstadium/overview/ Drone » MacStadium Pipelines]
* [https://docs.drone.io/pipeline/macstadium/overview/ Drone » MacStadium Pipelines]
* [https://docs.drone.io/pipeline/kubernetes/overview/ Drone » Kubernetes Pipelines]
* [https://docs.drone.io/pipeline/kubernetes/overview/ Drone » Kubernetes Pipelines]
* [https://hub.docker.com/r/drone/drone/tags Docker Hub » Drone Server]
* [https://hub.docker.com/r/drone/drone-runner-docker/tags Docker Hub » Drone Agent]
* [https://docs.drone.io/pipeline/docker/overview/ Drone » Docker Pipelines]
* [https://docs.drone.io/pipeline/docker/overview/ Drone » Docker Pipelines]
* [https://docs.drone.io/pipeline/exec/overview/ Drone » Exec Pipelines]
* [https://docs.drone.io/pipeline/exec/overview/ Drone » Exec Pipelines]
Line 41: Line 40:
* [https://docs.drone.io/pipeline/ssh/overview/ Drone » SSH Pipelines]
* [https://docs.drone.io/pipeline/ssh/overview/ Drone » SSH Pipelines]
* [https://docs.drone.io/server/overview/ Drone » Overview]
* [https://docs.drone.io/server/overview/ Drone » Overview]
* [[GitLab]]


| valign="top" |
| valign="top" |
* [https://community.harness.io/t/resolved-source-code-management-is-not-configured-error/10237 Drone » SCM System not configured]
* [https://hub.docker.com/r/drone/drone/tags Docker Hub » Drone Server]
* [https://hub.docker.com/r/drone/drone-runner-docker/tags Docker Hub » Drone Agent]
* [https://hub.docker.com/search?q=drone/drone&source=community Docker Hub » Drone]
* [https://hub.docker.com/search?q=drone/drone&source=community Docker Hub » Drone]
* [https://github.com/harness/drone/tree/master/docker GitHub » Docker]
* [https://github.com/harness/drone/tree/master/docker GitHub » Docker]
* [[Docker]]
* [[Docker]]
* [[GitLab]]
* [[TMux]]
* [[TMux]]



Revision as of 04:23, 4 April 2023

Linux:
export DRONE_HOME=/srv/drone
MacOS:
export DRONE_HOME=$HOME/drone
Local location Container location Usage
$DRONE_HOME/data /data Application data
docker run -it --rm \
--publish 9081:80 \
--publish 4430:443 \
drone/drone:latest \
bin/sh
id; exit
mkdir -p $DRONE_HOME/{data}
#chown -R 0:0 $DRONE_HOME/

References