phpmyadmin

This commit is contained in:
2025-11-05 10:34:17 +01:00
parent 72a1b266a4
commit 051009a5f1
2 changed files with 37 additions and 0 deletions

15
mariadb.md Normal file
View File

@@ -0,0 +1,15 @@
# MariaDB
```shell
$ docker run --detach --name mariadb \
-e MARIADB_ROOT_PASSWORD=my-secret-pw \
-p 3306:3306 \
-v mariadb_data:/var/lib/mysql \
mariadb:12.0
```
## phpMyAdmin
```shell
$ docker run --detach --name phpmyadmin --link mysql_db_server:db -p 8080:80 phpmyadmin:5.2-fpm-alpine
```

22
webservice.md Normal file
View File

@@ -0,0 +1,22 @@
## Scalar
Create world-class API Docs with a built-in interactive playground which seamlessly turns to a full featured API Client
```shell
$ docker run --detach --name scalar \
environment:
API_REFERENCE_CONFIG: |
{
"sources":[
{ "url": "https://postgrest.localhost" }
],
"theme": "purple"
}
networks:
- proxy_net
labels:
caddy: scalar.localhost
caddy.reverse_proxy: "{{upstreams 8080}}"
caddy.tls: internal
scalarapi/api-reference:0.4.2
```