When trying to start my drone server using docker-compose up
I get a request next execution
error. This is my docker-compose.yaml file
`version: '2'
services:
drone-server:
image: drone/drone:0.8
ports:
- 8000
- 9000
volumes:
- /var/lib/drone:/var/lib/drone/
restart: always
environment:
- DRONE_OPEN=true
- DRONE_HOST=https://my.drone.host
- DRONE_GITEA=true
- DRONE_GITEA_URL=https://my.gitea.url
- DRONE_SECRET=my_secret
drone-agent:
image: drone/agent:0.8
command: agent
restart: always
depends_on:
- drone-server
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- DRONE_SERVER=drone-server:9000
- DRONE_SECRET=my_secret`