phpmyadmin
This commit is contained in:
15
mariadb.md
Normal file
15
mariadb.md
Normal 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
22
webservice.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user