-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
Showing
5 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |