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.
20 lines
634 B
Bash
20 lines
634 B
Bash
#!/usr/bin/env bash
|
|
|
|
export HOSTNAME=$(hostname)
|
|
export DRONE_VERSION=1.10.1
|
|
export DRONE_RUNNER_VERSION=1.6.3
|
|
export GITEA_VERSION=1.13
|
|
export IP_ADDRESS=127.0.0.1
|
|
export MINIO_ACCESS_KEY="EXAMPLEKEY"
|
|
export MINIO_SECRET_KEY="EXAMPLESECRET"
|
|
export GITEA_ADMIN_USER="example"
|
|
export DRONE_RPC_SECRET="$(echo ${HOSTNAME} | openssl dgst -md5 -hex)"
|
|
export DRONE_USER_CREATE="username:${GITEA_ADMIN_USER},machine:false,admin:true,token:${DRONE_RPC_SECRET}"
|
|
export DRONE_GITEA_CLIENT_ID=""
|
|
export DRONE_GITEA_CLIENT_SECRET=""
|
|
docker-compose up -d
|
|
|
|
echo ""
|
|
echo "Gitea: http://${IP_ADDRESS}:3000/"
|
|
echo "Drone: http://${IP_ADDRESS}:3001/"
|