absolute path
This commit is contained in:
parent
b68d50ceea
commit
34482f8485
3 changed files with 16 additions and 14 deletions
2
.github/workflows/docker-build.yml
vendored
2
.github/workflows/docker-build.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: ci
|
||||
name: docker build
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
services:
|
||||
magma:
|
||||
name: magma
|
||||
container_name: magma
|
||||
image: help14/magma
|
||||
restart: always
|
||||
volumes:
|
||||
- ./common:/app/common
|
||||
#- ./themes/custom:/app/themes/custom
|
||||
expose:
|
||||
- 7001
|
||||
ports:
|
||||
- '7001:7001'
|
||||
|
|
|
@ -6,15 +6,17 @@
|
|||
<title>{{.Config.Title}}</title>
|
||||
<meta name="description" content="{{.Config.Description}}" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/png" href="common/assets/favicon.ico" />
|
||||
<link rel="stylesheet" href="theme/css/font.css">
|
||||
<link rel="stylesheet" href="theme/css/normalize.min.css">
|
||||
<link rel="stylesheet" href="theme/css/skeleton.min.css">
|
||||
<!-- <link rel="stylesheet" href="css/charts.min.css"> -->
|
||||
<link rel="stylesheet" href="theme/css/all.min.css">
|
||||
<link rel="stylesheet" href="common/css/core.css">
|
||||
<link rel="stylesheet" href="theme/css/magma.css">
|
||||
<link rel="stylesheet" href="common/css/custom.css">
|
||||
|
||||
<link rel="icon" type="image/png" href="/common/assets/favicon.ico" />
|
||||
|
||||
<link rel="stylesheet" href="/theme/css/font.css">
|
||||
<link rel="stylesheet" href="/theme/css/normalize.min.css">
|
||||
<link rel="stylesheet" href="/theme/css/skeleton.min.css">
|
||||
|
||||
<link rel="stylesheet" href="/theme/css/all.min.css">
|
||||
<link rel="stylesheet" href="/common/css/core.css">
|
||||
<link rel="stylesheet" href="/theme/css/magma.css">
|
||||
<link rel="stylesheet" href="/common/css/custom.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -143,7 +145,7 @@
|
|||
document.querySelector("#weather-info").style.visibility = "visible";
|
||||
})();
|
||||
</script>
|
||||
<script src="common/js/custom.js"></script>
|
||||
<script src="/common/js/custom.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Reference in a new issue