{"id":13583835,"url":"https://github.com/go-training/drone-tutorial","last_synced_at":"2025-10-11T04:11:29.394Z","repository":{"id":82886316,"uuid":"98021576","full_name":"go-training/drone-tutorial","owner":"go-training","description":"Drone Continuous Delivery Documentation using docker-compose","archived":false,"fork":false,"pushed_at":"2021-12-12T01:32:52.000Z","size":2542,"stargazers_count":125,"open_issues_count":0,"forks_count":39,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-06-13T18:47:27.576Z","etag":null,"topics":["docker-compose","drone","drone-ci","tutorial"],"latest_commit_sha":null,"homepage":"","language":"Jinja","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/go-training.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-07-22T09:36:36.000Z","updated_at":"2025-05-31T11:49:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"edff2cd7-7a3b-4751-a2d3-15eb867e7347","html_url":"https://github.com/go-training/drone-tutorial","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/go-training/drone-tutorial","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-training%2Fdrone-tutorial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-training%2Fdrone-tutorial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-training%2Fdrone-tutorial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-training%2Fdrone-tutorial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/go-training","download_url":"https://codeload.github.com/go-training/drone-tutorial/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-training%2Fdrone-tutorial/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268326435,"owners_count":24232477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker-compose","drone","drone-ci","tutorial"],"created_at":"2024-08-01T15:03:50.386Z","updated_at":"2025-10-11T04:11:24.360Z","avatar_url":"https://github.com/go-training.png","language":"Jinja","readme":"# drone-tutorial\n\nDrone Continuous Delivery Documentation\n\n## Install Drone with GitHub\n\n```yaml\nversion: '2'\n\nservices:\n  drone-server:\n    image: drone/drone:1\n    ports:\n      - 8081:80\n    volumes:\n      - ./:/data\n    restart: always\n    environment:\n      - DRONE_SERVER_HOST=${DRONE_SERVER_HOST}\n      - DRONE_SERVER_PROTO=${DRONE_SERVER_PROTO}\n      - DRONE_RPC_SECRET=${DRONE_RPC_SECRET}\n\n      # GitHub Config\n      - DRONE_GITHUB_SERVER=https://github.com\n      - DRONE_GITHUB_CLIENT_ID=${DRONE_GITHUB_CLIENT_ID}\n      - DRONE_GITHUB_CLIENT_SECRET=${DRONE_GITHUB_CLIENT_SECRET}\n\n      - DRONE_LOGS_PRETTY=true\n      - DRONE_LOGS_COLOR=true\n\n  # runner for docker version\n  drone-runner:\n    image: drone/drone-runner-docker:1\n    restart: always\n    depends_on:\n      - drone-server\n    volumes:\n      - /var/run/docker.sock:/var/run/docker.sock\n    environment:\n      - DRONE_RPC_HOST=${DRONE_RPC_HOST}\n      - DRONE_RPC_PROTO=${DRONE_RPC_PROTO}\n      - DRONE_RPC_SECRET=${DRONE_RPC_SECRET}\n      - DRONE_RUNNER_CAPACITY=3\n```\n\n## Install Drone with GitLab\n\n```yaml\nversion: '2'\n\nservices:\n  drone-server:\n    image: drone/drone:1\n    ports:\n      - 8081:80\n    volumes:\n      - ./:/data\n    restart: always\n    environment:\n      - DRONE_SERVER_HOST=${DRONE_SERVER_HOST}\n      - DRONE_SERVER_PROTO=${DRONE_SERVER_PROTO}\n      - DRONE_RPC_SECRET=${DRONE_RPC_SECRET}\n      # Gitlab Config\n      - DRONE_GITLAB_SERVER=https://gitlab.com\n      - DRONE_GITLAB_CLIENT_ID=${DRONE_GITLAB_CLIENT_ID}\n      - DRONE_GITLAB_CLIENT_SECRET=${DRONE_GITLAB_CLIENT_SECRET}\n      - DRONE_LOGS_PRETTY=true\n      - DRONE_LOGS_COLOR=true\n\n  # runner for docker version\n  drone-runner:\n    image: drone/drone-runner-docker:1\n    restart: always\n    depends_on:\n      - drone-server\n    volumes:\n      - /var/run/docker.sock:/var/run/docker.sock\n    environment:\n      - DRONE_RPC_HOST=${DRONE_RPC_HOST}\n      - DRONE_RPC_PROTO=${DRONE_RPC_PROTO}\n      - DRONE_RPC_SECRET=${DRONE_RPC_SECRET}\n      - DRONE_RUNNER_CAPACITY=3\n```\n\n## Git Service Configutation\n\n* [Configutation with GitHub][1]\n* [Configutation with GitLab][2]\n* [Configutation with BitBucket][3]\n* [Drone on Kubernetes on AWS][4]\n\n[1]:./installation/install-with-github.md\n[2]:./installation/install-with-gitlab.md\n[3]:./installation/install-with-bitbucket.md\n[4]:https://github.com/appleboy/drone-on-kubernetes/tree/master/aws\n","funding_links":[],"categories":["Jinja","Resources"],"sub_categories":["Documentation"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgo-training%2Fdrone-tutorial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgo-training%2Fdrone-tutorial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgo-training%2Fdrone-tutorial/lists"}