Compare commits
No commits in common. "c640397794533579fdc9a3aea47e8771147a3130" and "17cfa71cff8698750ae110923e1fc8c9c5110e50" have entirely different histories.
c640397794
...
17cfa71cff
3 changed files with 6 additions and 42 deletions
6
.github/renovate.json
vendored
6
.github/renovate.json
vendored
|
@ -37,15 +37,11 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchPackageNames": ["binhex/arch-qbittorrentvpn"],
|
"matchPackageNames": ["binhex/arch-qbittorrentvpn"],
|
||||||
"customChangelogUrl": "https://github.com/binhex/arch-qbittorrentvpn/releases"
|
"customChangelogUrl": "https://github.com/binhex/arch-qbittorrentvpn/releases/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchPackageNames": ["lscr.io/linuxserver/sonarr"],
|
"matchPackageNames": ["lscr.io/linuxserver/sonarr"],
|
||||||
"customChangelogUrl": "https://github.com/linuxserver/docker-sonarr/releases"
|
"customChangelogUrl": "https://github.com/linuxserver/docker-sonarr/releases"
|
||||||
},
|
|
||||||
{
|
|
||||||
"matchPackageNames": ["lscr.io/linuxserver/jellyfin"],
|
|
||||||
"customChangelogUrl": "https://github.com/linuxserver/docker-jellyfin"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
10
README.md
10
README.md
|
@ -33,11 +33,6 @@ Homelab environment defined in code. Using Drone and Renovate bot for CI along w
|
||||||
<td><a href="https://github.com/kiranshila/Doplarr">Doplarr</a></td>
|
<td><a href="https://github.com/kiranshila/Doplarr">Doplarr</a></td>
|
||||||
<td>Allows my users to request content through Discord if they choose</td>
|
<td>Allows my users to request content through Discord if they choose</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td><img vertical-align=baseline width="32" src="https://raw.githubusercontent.com/Mafyuh/homelab-svg-assets/main/assets/droneci.svg"></td>
|
|
||||||
<td><a href="https://www.drone.io/">Drone</a></td>
|
|
||||||
<td>Selfhosted CI/CD pipeline manager</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><img vertical-align=baseline width="32" src="https://raw.githubusercontent.com/FlareSolverr/FlareSolverr/master/resources/flaresolverr_logo.svg"></td>
|
<td><img vertical-align=baseline width="32" src="https://raw.githubusercontent.com/FlareSolverr/FlareSolverr/master/resources/flaresolverr_logo.svg"></td>
|
||||||
<td><a href="https://github.com/FlareSolverr/FlareSolverr">FlareSolverr</a></td>
|
<td><a href="https://github.com/FlareSolverr/FlareSolverr">FlareSolverr</a></td>
|
||||||
|
@ -167,6 +162,11 @@ Homelab environment defined in code. Using Drone and Renovate bot for CI along w
|
||||||
<td><a href="https://wordpress.org/">Wordpress</a></td>
|
<td><a href="https://wordpress.org/">Wordpress</a></td>
|
||||||
<td>WooCommerce store setup for JF PPV access</td>
|
<td>WooCommerce store setup for JF PPV access</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><img vertical-align=baseline width="32" src="https://raw.githubusercontent.com/Mafyuh/homelab-svg-assets/main/assets/droneci.svg"></td>
|
||||||
|
<td><a href="https://www.drone.io/">Drone</a></td>
|
||||||
|
<td>Selfhosted CI/CD pipeline manager</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><img vertical-align=baseline width="32" src="https://raw.githubusercontent.com/Mafyuh/homelab-svg-assets/main/assets/forgejo.svg"></td>
|
<td><img vertical-align=baseline width="32" src="https://raw.githubusercontent.com/Mafyuh/homelab-svg-assets/main/assets/forgejo.svg"></td>
|
||||||
<td><a href="https://forgejo.org/">Forgejo</a></td>
|
<td><a href="https://forgejo.org/">Forgejo</a></td>
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
version: '3'
|
|
||||||
|
|
||||||
services:
|
|
||||||
drone:
|
|
||||||
image: drone/drone:2.23.0
|
|
||||||
environment:
|
|
||||||
- DRONE_GITEA_CLIENT_ID=$DRONE_GITEA_CLIENT_ID
|
|
||||||
- DRONE_GITEA_CLIENT_SECRET=$DRONE_GITEA_CLIENT_SECRET
|
|
||||||
- DRONE_GITEA_SERVER=$DRONE_GITEA_SERVER
|
|
||||||
- DRONE_GIT_ALWAYS_AUTH=true
|
|
||||||
- DRONE_RPC_SECRET=$DRONE_RPC_SECRET
|
|
||||||
- DRONE_SERVER_HOST=$DRONE_SERVER_HOST
|
|
||||||
- DRONE_SERVER_PROTO=https
|
|
||||||
volumes:
|
|
||||||
- /home/mafyuh/drone/data:/data
|
|
||||||
ports:
|
|
||||||
- "81:80"
|
|
||||||
- "444:443"
|
|
||||||
restart: always
|
|
||||||
drone-runner:
|
|
||||||
image: drone/drone-runner-docker@sha256:e3595c0a0a60852d2f55750e50df6d2635b20c424d43c419575b46490d6aa864
|
|
||||||
environment:
|
|
||||||
- DRONE_RPC_PROTO=https
|
|
||||||
- DRONE_RPC_HOST=$DRONE_RPC_HOST
|
|
||||||
- DRONE_RPC_SECRET=$DRONE_RPC_SECRET
|
|
||||||
- DRONE_RUNNER_CAPACITY=2
|
|
||||||
- DRONE_RUNNER_NAME=my-runner
|
|
||||||
ports:
|
|
||||||
- "3002:3000"
|
|
||||||
volumes:
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
restart: unless-stopped
|
|
Reference in a new issue