Update docker-compose.yml to use user home directory for data and logs mapping; fix CSS and JS file paths in index.html for consistent resource loading.

This commit is contained in:
liu
2026-02-03 11:47:48 +08:00
parent f3b6d6d948
commit 765c6f0021
3 changed files with 7 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SFTP文件管理器</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="app-container">
@@ -173,6 +173,6 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="/js/app.js"></script>
<script src="js/app.js"></script>
</body>
</html>