first commit

This commit is contained in:
lendry
2026-04-22 15:21:35 +03:00
commit 58c7f4ae1a
2 changed files with 90 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -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