feat: add supported_architecture to invidious & libreddit
This commit is contained in:
parent
4a8626c901
commit
0138b16bd9
|
@ -6,7 +6,8 @@
|
||||||
"port": 8095,
|
"port": 8095,
|
||||||
"id": "invidious",
|
"id": "invidious",
|
||||||
"version": "latest",
|
"version": "latest",
|
||||||
"tipi_version": 2,
|
"tipi_version": 3,
|
||||||
|
"supported_architectures": ["arm64", "amd64"],
|
||||||
"categories": ["media", "social"],
|
"categories": ["media", "social"],
|
||||||
"description": "Invidious is an open source alternative front-end to YouTube.",
|
"description": "Invidious is an open source alternative front-end to YouTube.",
|
||||||
"short_desc": "An alternative front-end to YouTube",
|
"short_desc": "An alternative front-end to YouTube",
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: "3.7"
|
||||||
services:
|
services:
|
||||||
libreddit:
|
libreddit:
|
||||||
container_name: libreddit
|
container_name: libreddit
|
||||||
image: spikecodes/libreddit:arm
|
image: spikecodes/libreddit:armv7
|
||||||
dns:
|
dns:
|
||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
ports:
|
ports:
|
||||||
|
|
19
apps/libreddit/docker-compose.arm64.yml
Normal file
19
apps/libreddit/docker-compose.arm64.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
version: "3.7"
|
||||||
|
services:
|
||||||
|
libreddit:
|
||||||
|
container_name: libreddit
|
||||||
|
image: spikecodes/libreddit:arm
|
||||||
|
dns:
|
||||||
|
- ${DNS_IP}
|
||||||
|
ports:
|
||||||
|
- ${APP_PORT}:8080
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- tipi_main_network
|
||||||
|
labels:
|
||||||
|
traefik.enable: ${APP_EXPOSED}
|
||||||
|
traefik.http.routers.libreddit.rule: Host(`${APP_DOMAIN}`)
|
||||||
|
traefik.http.routers.libreddit.entrypoints: websecure
|
||||||
|
traefik.http.routers.libreddit.service: libreddit
|
||||||
|
traefik.http.routers.libreddit.tls.certresolver: myresolver
|
||||||
|
traefik.http.services.libreddit.loadbalancer.server.port: 8080
|
|
@ -2,7 +2,7 @@ version: "3.7"
|
||||||
services:
|
services:
|
||||||
libreddit:
|
libreddit:
|
||||||
container_name: libreddit
|
container_name: libreddit
|
||||||
image: spikecodes/libreddit
|
image: spikecodes/libreddit:latest
|
||||||
dns:
|
dns:
|
||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
ports:
|
ports:
|
||||||
|
|
|
@ -7,9 +7,8 @@
|
||||||
"id": "librephotos",
|
"id": "librephotos",
|
||||||
"tipi_version": 2,
|
"tipi_version": 2,
|
||||||
"version": "2022w39",
|
"version": "2022w39",
|
||||||
"categories": [
|
"supported_architectures": ["amd64", "arm64"],
|
||||||
"photography"
|
"categories": ["photography"],
|
||||||
],
|
|
||||||
"description": "",
|
"description": "",
|
||||||
"short_desc": "",
|
"short_desc": "",
|
||||||
"author": "Niaz Faridani-Rad",
|
"author": "Niaz Faridani-Rad",
|
||||||
|
|
|
@ -36,6 +36,14 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"supported_architectures": {
|
||||||
|
"type": "array",
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"id": {
|
"id": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"pattern": "^[a-z0-9-_]+$"
|
"pattern": "^[a-z0-9-_]+$"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user