cloudron-drone-app/runner/docker-compose.yml
Felix Bartels ad8009bae2 another switch to enable the local ui
Signed-off-by: Felix Bartels <felix@host-consultants.de>
2020-06-24 07:41:12 +02:00

21 lines
531 B
YAML

version: '3'
services:
drone-agent:
container_name: drone-agent
image: drone/agent:1
command: agent
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- DRONE_RPC_SERVER=${DRONE_RPC_SERVER}
- DRONE_RPC_SECRET=${DRONE_RPC_SECRET}
- DRONE_RUNNER_CAPACITY=${DRONE_RUNNER_CAPACITY}
- DRONE_RUNNER_NAME=${DRONE_RUNNER_NAME}
- DRONE_UI_DISABLE=false
- DRONE_UI_USERNAME=root
- DRONE_UI_PASSWORD=r00t
ports:
- "3000:3000"