Fixed droneci.yml syntax error

This commit is contained in:
=
2026-05-09 07:55:29 +00:00
parent 25506f6bd0
commit 5853440e1b
+16 -18
View File
@@ -1,4 +1,3 @@
# Drone server - orchestrator and main ui
drone:
image: drone/drone:2
container_name: drone
@@ -20,23 +19,22 @@ drone:
networks:
- droneci-network
# Drone Runner - executes pipeline steps in Docker containers
drone-runner:
image: drone/drone-runner-docker:1
container_name: drone-runner
environment:
- DRONE_RPC_PROTO=http
- DRONE_RPC_HOST=drone
- DRONE_RPC_SECRET=${DRONE_RPC_SECRET}
- DRONE_RUNNER_CAPACITY=2
- DRONE_RUNNER_NAME=local-runner
volumes:
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- drone
restart: unless-stopped
networks:
- droneci-network
drone-runner:
image: drone/drone-runner-docker:1
container_name: drone-runner
environment:
- DRONE_RPC_PROTO=http
- DRONE_RPC_HOST=drone
- DRONE_RPC_SECRET=${DRONE_RPC_SECRET}
- DRONE_RUNNER_CAPACITY=2
- DRONE_RUNNER_NAME=local-runner
volumes:
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- drone
restart: unless-stopped
networks:
- droneci-network
volumes:
drone-data: