You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
546 B
Bash
15 lines
546 B
Bash
#!/usr/bin/env bash
|
|
|
|
export HOSTNAME=$(hostname)
|
|
export DRONE_VERSION=2.16.0
|
|
export DRONE_RUNNER_VERSION=1.8.3
|
|
export GITEA_ADMIN_USER="admin"
|
|
export DRONE_RPC_SECRET="$(echo ${HOSTNAME} | openssl dgst -md5 -hex|cut -d' ' -f2)"
|
|
export DRONE_USER_CREATE="username:${GITEA_ADMIN_USER},machine:false,admin:true,token:${DRONE_RPC_SECRET}"
|
|
|
|
# These are set in ~/.bash_profile
|
|
# export DRONE_GITEA_CLIENT_ID=""
|
|
# export DRONE_GITEA_CLIENT_SECRET=""
|
|
docker-compose -f docker-compose/drone.yml up -d
|
|
caddy start --config caddy/drone --adapter caddyfile
|