When I run the drone docker, it crashes after 20 seconds.
I am running Raspbian on a Raspberry Pi 3.
Here is how I try to run it:
docker run \
--volume=/var/lib/drone:/data \
--env=DRONE_AGENTS_ENABLED=true \
--env=DRONE_GITEA_SERVER=... \
--env=DRONE_GITEA_CLIENT_ID=... \
--env=DRONE_GITEA_CLIENT_SECRET=... \
--env=DRONE_RPC_SECRET=... \
--env=DRONE_SERVER_HOST=... \
--env=DRONE_SERVER_PROTO=http \
--env=DRONE_LOGS_DEBUG=true \
--env=DRONE_LOGS_TEXT=true \
--env=DRONE_LOGS_PRETTY=true \
--env=DRONE_LOGS_COLOR=true \
--publish=5000:80 \
--publish=5443:443 \
--restart=always \
--detach=true \
--name=drone \
drone/drone:1
When I run docker logs drone
, nothing shows up, and the docker logs aren’t of any help either. Docker works with other images (httpd for instance).