From 58c7f4ae1a7d9bb2a66896ca02ef3e690f635af6 Mon Sep 17 00:00:00 2001 From: lendry Date: Wed, 22 Apr 2026 15:21:35 +0300 Subject: [PATCH] first commit --- docker-compose.yml | 16 ++++++++++ index.html | 74 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 docker-compose.yml create mode 100644 index.html diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..7f6d420 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ +services: + frontend-stub: + image: nginx:alpine + container_name: frontend-stub + restart: always + ports: + - "8080:80" + volumes: + # Прокидываем наш файлик так, чтобы он открывался по адресу /login + - ./index.html:/usr/share/nginx/html/login/index.html + networks: + - erp-networks + +networks: + erp-networks: + external: true \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..bac874a --- /dev/null +++ b/index.html @@ -0,0 +1,74 @@ + + + + + Lendry SSO - Заглушка + + + +
+

Вход в Lendry

+

Frontend-заглушка для теста SSO

+ +
+ + + +
+
+
+ + + + \ No newline at end of file