https://github.com/zeropsio/recipe-adminer
Pre-prepared skeleton demonstrating the way how to set up and use Adminer 4.8.1 in Zerops.
https://github.com/zeropsio/recipe-adminer
Last synced: about 1 year ago
JSON representation
Pre-prepared skeleton demonstrating the way how to set up and use Adminer 4.8.1 in Zerops.
- Host: GitHub
- URL: https://github.com/zeropsio/recipe-adminer
- Owner: zeropsio
- License: mit
- Created: 2021-10-20T15:10:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-22T20:01:43.000Z (almost 2 years ago)
- Last Synced: 2025-03-16T06:24:28.746Z (over 1 year ago)
- Size: 327 KB
- Stars: 1
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zerops x Adminer
The concept of a utility tool illustrates how to set up and use the technologies supported by [Zerops](https://zerops.io).

## Deploy on Zerops
You can add the latest version of Adminer to your project by clicking the ```Import Services``` button in the project details and then copying the provided code.
```yaml
services:
- hostname: adminer
type: php-apache@8.3
enableSubdomainAccess: true
buildFromGit: https://github.com/zeropsio/recipe-adminer
```
See the [Zerops documentation](https://docs.zerops.io/references/import) and [zerops.yaml](https://github.com/zeropsio/recipe-adminer/blob/main/zerops.yml) to understand how to use it.
## ADMINER
[Adminer](https://www.adminer.org/en) is a full-featured database management tool written in PHP. Conversely to phpMyAdmin, it consist of a single file ready to deploy to the target server. Adminer is available for MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, Oracle, Elasticsearch, MongoDB and others via plugin.
## Production vs. development
- For production environments, it is not advisable to make Adminer publicly accessible. Consider either disabling ```Public Access through the Zerops.io subdomain``` after deployment in GUI or directly setting `enableSubdomainAccess` to `false` in import file.
- To access Adminer in production environment you can use a [VPN](https://docs.zerops.io/references/vpn) through [ZCLI](https://docs.zerops.io/references/cli). Once connected, Adminer will be available at the address `adminer.zerops` (or whatever hostname you set).
Need help setting your project up? Join [Zerops Discord community](https://discord.com/invite/WDvCZ54).