mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-14 05:12:19 +08:00
feat:添加geekbench到列表
This commit is contained in:
parent
9701eee266
commit
43db8a8a9d
2
apps/geekbench/4/.env.sample
Normal file
2
apps/geekbench/4/.env.sample
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CONTAINER_NAME="docker-geekbench"
|
||||||
|
TIPS="结果查看容器日志获取 / Results view container logs to get"
|
9
apps/geekbench/4/data.yml
Normal file
9
apps/geekbench/4/data.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "结果查看容器日志获取 / Results view container logs to get"
|
||||||
|
disabled: true
|
||||||
|
envKey: TIPS
|
||||||
|
labelEn: Tips
|
||||||
|
labelZh: 提示
|
||||||
|
required: true
|
||||||
|
type: text
|
15
apps/geekbench/4/docker-compose.yml
Normal file
15
apps/geekbench/4/docker-compose.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
services:
|
||||||
|
geekbench:
|
||||||
|
image: "davidsarkany/geekbench:4"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: "no"
|
||||||
|
stdin_open: true
|
||||||
|
tty: true
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
2
apps/geekbench/5/.env.sample
Normal file
2
apps/geekbench/5/.env.sample
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CONTAINER_NAME="docker-geekbench"
|
||||||
|
TIPS="结果查看容器日志获取 / Results view container logs to get"
|
9
apps/geekbench/5/data.yml
Normal file
9
apps/geekbench/5/data.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "结果查看容器日志获取 / Results view container logs to get"
|
||||||
|
disabled: true
|
||||||
|
envKey: TIPS
|
||||||
|
labelEn: Tips
|
||||||
|
labelZh: 提示
|
||||||
|
required: true
|
||||||
|
type: text
|
15
apps/geekbench/5/docker-compose.yml
Normal file
15
apps/geekbench/5/docker-compose.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
services:
|
||||||
|
geekbench:
|
||||||
|
image: "davidsarkany/geekbench:5"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: "no"
|
||||||
|
stdin_open: true
|
||||||
|
tty: true
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
2
apps/geekbench/6/.env.sample
Normal file
2
apps/geekbench/6/.env.sample
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CONTAINER_NAME="docker-geekbench"
|
||||||
|
TIPS="结果查看容器日志获取 / Results view container logs to get"
|
9
apps/geekbench/6/data.yml
Normal file
9
apps/geekbench/6/data.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "结果查看容器日志获取 / Results view container logs to get"
|
||||||
|
disabled: true
|
||||||
|
envKey: TIPS
|
||||||
|
labelEn: Tips
|
||||||
|
labelZh: 提示
|
||||||
|
required: true
|
||||||
|
type: text
|
15
apps/geekbench/6/docker-compose.yml
Normal file
15
apps/geekbench/6/docker-compose.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
services:
|
||||||
|
geekbench:
|
||||||
|
image: "davidsarkany/geekbench:6"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: "no"
|
||||||
|
stdin_open: true
|
||||||
|
tty: true
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
25
apps/geekbench/README.md
Normal file
25
apps/geekbench/README.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Geekbench
|
||||||
|
|
||||||
|
[](https://hub.docker.com/r/davidsarkany/geekbench) [](https://hub.docker.com/r/davidsarkany/geekbench)
|
||||||
|
|
||||||
|
Unofficial build of Geekbench, forked from [chrisdaish/geekbench](https://github.com/chrisdaish/docker-geekbench).
|
||||||
|
|
||||||
|
### Usage
|
||||||
|
|
||||||
|
#### Geekbench 6
|
||||||
|
|
||||||
|
```
|
||||||
|
docker run -it --rm davidsarkany/geekbench && docker rmi davidsarkany/geekbench
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Geekbench 5
|
||||||
|
|
||||||
|
```
|
||||||
|
docker run -it --rm davidsarkany/geekbench:5 && docker rmi davidsarkany/geekbench:5
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Geekbench 4
|
||||||
|
|
||||||
|
```
|
||||||
|
docker run -it --rm davidsarkany/geekbench:4 && docker rmi davidsarkany/geekbench:4
|
||||||
|
```
|
19
apps/geekbench/data.yml
Normal file
19
apps/geekbench/data.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Geekbench
|
||||||
|
tags:
|
||||||
|
- 实用工具
|
||||||
|
title: 基准测试工具 Docker 版
|
||||||
|
description: 基准测试工具 Docker 版
|
||||||
|
additionalProperties:
|
||||||
|
key: geekbench
|
||||||
|
name: Geekbench
|
||||||
|
tags:
|
||||||
|
- Tool
|
||||||
|
shortDescZh: 基准测试工具 Docker 版
|
||||||
|
shortDescEn: Benchmarking tool Docker version
|
||||||
|
type: tool
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
recommend: 0
|
||||||
|
website: https://hub.docker.com/r/davidsarkany/geekbench
|
||||||
|
github: https://github.com/chrisdaish/docker-geekbench
|
||||||
|
document: https://github.com/chrisdaish/docker-geekbench
|
BIN
apps/geekbench/logo.png
Normal file
BIN
apps/geekbench/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
Loading…
Reference in New Issue
Block a user