Im running gogs with success by:
docker run --name=gogs --restart always -p 10080:3000 -v /home/gogs:/data -d gogs/gogs
its working... link: removed
And I want to add a drone.io container with:
docker run -it --name=drone -p 8080:80 -v /var/run/docker.sock:/var/run/docker.sock -v /home/drone/volume/drone:/var/lib/drone -e DRONE_GOGS=true -e DRONE_GOGS_URL=https://removed/gogs drone/drone
But I always get:
FATA[0000] failed to generate token from DRONE_AGENT_SECRET
in the console right at the start.
But why? Thanks for your help :)