Skip to content

Commit

Permalink
Adminer数据库管理工具 (#17)
Browse files Browse the repository at this point in the history
* Create app.json

* Add files via upload

* Create config.json

* Add files via upload

* Update docker-compose.yml

* Create config.json

* Add files via upload

* Delete apps/adminer/metadata/versions/4.8.1 directory

* Update docker-compose.yml
  • Loading branch information
xiahao90 authored May 4, 2023
1 parent cf34028 commit dfcd54b
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/adminer/metadata/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"key":"adminer","name":"adminer","tags":["WebSite"],"versions":["4.8.1"],"shortDescZh":"PHP轻量级数据库管理工具","shortDescEn":"Database management in a single PHP file","type":"website","limit":1,"crossVersionUpdate":false,"website":"https://www.adminer.org/","github":"https://github.com/xiahao90/adminer","document":"https://github.com/xiahao90/adminer"}
Binary file added apps/adminer/metadata/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions apps/adminer/versions/4.8.1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Adminer - Database management in a single PHP file
Adminer Editor - Data manipulation for end-users

https://www.adminer.org/
Supports: MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, Oracle, Elasticsearch, MongoDB, SimpleDB (plugin), Firebird (plugin), ClickHouse (plugin)
Requirements: PHP 5+
Apache License 2.0 or GPL 2

adminer/index.php - Run development version of Adminer
editor/index.php - Run development version of Adminer Editor
editor/example.php - Example customization
plugins/readme.txt - Plugins for Adminer and Adminer Editor
adminer/plugin.php - Plugin demo
adminer/sqlite.php - Development version of Adminer with SQLite allowed
editor/sqlite.php - Development version of Editor with SQLite allowed
adminer/designs.php - Development version of Adminer with adminer.css switcher
compile.php - Create a single file version
lang.php - Update translations
tests/katalon.html - Katalon Automation Recorder test suite

If downloaded from Git then run: git submodule update --init
14 changes: 14 additions & 0 deletions apps/adminer/versions/4.8.1/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"formFields": [
{
"type": "number",
"labelZh": "端口",
"labelEn": "Port",
"required": true,
"default": 9853,
"rule": "paramPort",
"envKey": "PANEL_APP_PORT_HTTP",
"edit": true
}
]
}
15 changes: 15 additions & 0 deletions apps/adminer/versions/4.8.1/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: "3"
services:
adminer:
image: adminer:4.8.1-standalone
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true

0 comments on commit dfcd54b

Please sign in to comment.