Im trying to integrate a self-hosted drone server into my gogs service.
i startet my docker container with this command
sudo docker run -e DRONE_GOGS=true -e DRONE_GOGS_URL=https://my-url DRONE_OPEN=true DRONE_ADMIN=admin -e DRONE_SECRET=somesecret123 -v /var/lib/drone:/var/lib/drone -p 80:8000 --restart=always --name=drone drone/drone
But when i try to access via webbrowser iam recieving an Connection Refused
Error.
I have been reading about a docker-compose.yaml
which has to be created...
But where do i have to create this File?
Thank you very much