setting up local drone server: Unable to login. Registration is closed setting up local drone server: Unable to login. Registration is closed docker docker

setting up local drone server: Unable to login. Registration is closed


Found the problem. Browsing drone issues I found this one that mentions that I need to add open=true to the query string so drone is able to create the github application.


If you get access_denied in web drone

This is docker-compose and answer -> DRONE_OPEN=true:
version: '2' services: drone-server: image: drone/drone:0.7 ports: - 80:8000 volumes: - ./drone:/var/lib/drone/ restart: always environment: - DRONE_GITLAB=true - DRONE_GITLAB_CLIENT=change_value - DRONE_GITLAB_SECRET=change_value - DRONE_GITLAB_URL=https://gitlab-01example.com - DRONE_SECRET=change_value - DRONE_GITLAB_SKIP_VERIFY=true - DRONE_DEBUG=true - DRONE_OPEN=true drone-agent: image: drone/drone:0.7 command: agent restart: always depends_on: - drone-server volumes: - /var/run/docker.sock:/var/run/docker.sock environment: - DRONE_SERVER=ws://drone-server:8000/ws/broker - DRONE_SECRET=change_value - DRONE_GITLAB_SKIP_VERIFY=true