This commit is contained in:
2024-07-25 22:14:20 +03:00
commit a55fe9914b
32 changed files with 15966 additions and 0 deletions

2
d-scripts/re-run.sh Normal file
View File

@@ -0,0 +1,2 @@
sh stop.sh;
sh up-nginx.sh;

1
d-scripts/stop.sh Normal file
View File

@@ -0,0 +1 @@
docker stop adminka_nginx2;

1
d-scripts/up-nginx.sh Normal file
View File

@@ -0,0 +1 @@
docker run --name adminka_nginx2 -v $PWD/nginx.conf:/etc/nginx/nginx.conf:ro -v $PWD/dist:/usr/share/nginx/html --rm -d -p 3072:80 nginx;