8000 better README · docker-web/docker-web@8a1e002 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8a1e002

Browse files
author
valere
committed
better README
1 parent a99443a commit 8a1e002

File tree

2 files changed

+12
-3
lines changed

Original file line numberDiff line numberDiff line change
@@ -3,8 +3,15 @@
33
<img align="center" alt="docker-web" src="./logo.svg" height="100">
44
</picture>
55
docker-web
6+
<br>
7+
<br>
8+
<center>
9+
manage web-app with docker
10+
</center>
611
</h1>
712

13+
<h3>Manual</h3>
14+
815
```bash
916
Core Commands:
1017
usage: docker-web <command>
@@ -28,15 +35,17 @@ usage: docker-web <command> <app_name>
2835
reset down app and remove containers and volumes
2936
rm down app and remove its config folder
3037
* restart stop down rm logs pull ... any docker-compose commands are compatible
38+
```
39+
<h3>App structure:</h3>
3140
32-
App structure:
41+
```bash
3342
.
3443
├── config.sh user configurations
3544
├── apps
3645
│ ├── app-1
3746
│ │ ├── config.sh app configurations
3847
│ │ ├── docker-compose.yml app docker structure
39-
│ │ ├── logo.svg icon of the app, usefull for dashboard
48+
│ │ ├── logo.svg app icon (usefull for dashboard app)
4049
│ │ ├── nginx.conf nginx configurations (optional)
4150
│ │ ├── post-install.sh script executed before the app is launched (optional)
4251
│ │ ├── pre-install.sh script executed after the app is launched (optional)
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export DOCKERWEB_VERSION="24.7.2"
1+
export DOCKERWEB_VERSION="24.7.3"
22
export GITHUB_DOCKERWEB="https://github.com/docker-web/docker-web"
33
export PATH_DOCKERWEB=~/docker-web
44
export PATH_DOCKERWEB_APPS=$PATH_DOCKERWEB/apps