Merge branch 'main' into renovate/lscr.io-linuxserver-jellyfin
All checks were successful
continuous-integration/drone/pr Build is passing
All checks were successful
continuous-integration/drone/pr Build is passing
This commit is contained in:
commit
c640397794
3 changed files with 42 additions and 6 deletions
6
.github/renovate.json
vendored
6
.github/renovate.json
vendored
|
@ -37,11 +37,15 @@
|
|||
},
|
||||
{
|
||||
"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"],
|
||||
"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,6 +33,11 @@ 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>Allows my users to request content through Discord if they choose</td>
|
||||
</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>
|
||||
<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>
|
||||
|
@ -162,11 +167,6 @@ Homelab environment defined in code. Using Drone and Renovate bot for CI along w
|
|||
<td><a href="https://wordpress.org/">Wordpress</a></td>
|
||||
<td>WooCommerce store setup for JF PPV access</td>
|
||||
</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>
|
||||
<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>
|
||||
|
|
32
drone/docker-compose.yml
Normal file
32
drone/docker-compose.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
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