Add dashdot and linuxserver docker images to image to match list

This commit is contained in:
RichyHBM
2022-07-21 18:29:35 +01:00
parent ce0f27bb6e
commit 6915a1bfaf

View File

@@ -60,34 +60,41 @@ export const Targets = [
export const ServiceTypeList = [ export const ServiceTypeList = [
'Other', 'Other',
'Emby',
'Dash.', 'Dash.',
'Deluge', 'Deluge',
'Emby',
'Lidarr', 'Lidarr',
'Plex', 'Plex',
'qBittorrent',
'Radarr', 'Radarr',
'Readarr', 'Readarr',
'Sonarr', 'Sonarr',
'qBittorrent',
'Transmission', 'Transmission',
]; ];
export type ServiceType = export type ServiceType =
| 'Other' | 'Other'
| 'Emby'
| 'Dash.' | 'Dash.'
| 'Deluge' | 'Deluge'
| 'Emby'
| 'Lidarr' | 'Lidarr'
| 'Plex' | 'Plex'
| 'Radarr' | 'Radarr'
| 'Readarr' | 'Readarr'
| 'Sonarr'
| 'qBittorrent' | 'qBittorrent'
| 'Sonarr'
| 'Transmission'; | 'Transmission';
export const MatchingImages: { image: string; type: ServiceType }[] = [ export const MatchingImages: { image: string; type: ServiceType }[] = [
{ image: 'lscr.io/linuxserver/radarr', type: 'Radarr' }, { image: 'mauricenino/dashdot', type: 'Dash.' },
{ image: 'lscr.io/linuxserver/sonarr', type: 'Sonarr' }, { image: 'lscr.io/linuxserver/deluge', type: 'Deluge' },
{ image: 'lscr.io/linuxserver/emby', type: 'Emby' },
{ image: 'lscr.io/linuxserver/lidarr', type: 'Lidarr' },
{ image: 'lscr.io/linuxserver/plex', type: 'Plex' },
{ image: 'lscr.io/linuxserver/qbittorrent', type: 'qBittorrent' }, { image: 'lscr.io/linuxserver/qbittorrent', type: 'qBittorrent' },
{ image: 'lscr.io/linuxserver/radarr', type: 'Radarr' },
{ image: 'lscr.io/linuxserver/readarr', type: 'Readarr' },
{ image: 'lscr.io/linuxserver/sonarr', type: 'Sonarr' },
{ image: 'lscr.io/linuxserver/transmission', type: 'Transmission' },
]; ];
export interface serviceItem { export interface serviceItem {