feat: add supported_architecture to invidious & libreddit
This commit is contained in:
parent
4a8626c901
commit
0138b16bd9
|
@ -6,7 +6,8 @@
|
|||
"port": 8095,
|
||||
"id": "invidious",
|
||||
"version": "latest",
|
||||
"tipi_version": 2,
|
||||
"tipi_version": 3,
|
||||
"supported_architectures": ["arm64", "amd64"],
|
||||
"categories": ["media", "social"],
|
||||
"description": "Invidious is an open source alternative front-end to YouTube.",
|
||||
"short_desc": "An alternative front-end to YouTube",
|
||||
|
|
|
@ -2,7 +2,7 @@ version: "3.7"
|
|||
services:
|
||||
libreddit:
|
||||
container_name: libreddit
|
||||
image: spikecodes/libreddit:arm
|
||||
image: spikecodes/libreddit:armv7
|
||||
dns:
|
||||
- ${DNS_IP}
|
||||
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:
|
||||
libreddit:
|
||||
container_name: libreddit
|
||||
image: spikecodes/libreddit
|
||||
image: spikecodes/libreddit:latest
|
||||
dns:
|
||||
- ${DNS_IP}
|
||||
ports:
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
"id": "librephotos",
|
||||
"tipi_version": 2,
|
||||
"version": "2022w39",
|
||||
"categories": [
|
||||
"photography"
|
||||
],
|
||||
"supported_architectures": ["amd64", "arm64"],
|
||||
"categories": ["photography"],
|
||||
"description": "",
|
||||
"short_desc": "",
|
||||
"author": "Niaz Faridani-Rad",
|
||||
|
|
|
@ -36,6 +36,14 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"supported_architectures": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string",
|
||||
"pattern": "^[a-z0-9-_]+$"
|
||||
|
|
Loading…
Reference in New Issue
Block a user