mirror of
https://github.com/arnaucube/tools-containers.git
synced 2026-02-06 19:26:40 +01:00
initial commit
This commit is contained in:
2
launcher/.gitignore
vendored
Normal file
2
launcher/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
node_modules
|
||||
package-lock.json
|
||||
12
launcher/Dockerfile
Normal file
12
launcher/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM node:argon
|
||||
|
||||
RUN mkdir /launcher
|
||||
WORKDIR /launcher
|
||||
|
||||
ADD . /launcher
|
||||
|
||||
RUN npm install -g http-server
|
||||
|
||||
CMD http-server
|
||||
|
||||
EXPOSE 8080
|
||||
BIN
launcher/img/etherpad.png
Normal file
BIN
launcher/img/etherpad.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.5 KiB |
BIN
launcher/img/gogs.png
Normal file
BIN
launcher/img/gogs.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 96 KiB |
BIN
launcher/img/kanboard.png
Normal file
BIN
launcher/img/kanboard.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 33 KiB |
BIN
launcher/img/mumble.png
Normal file
BIN
launcher/img/mumble.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 350 KiB |
BIN
launcher/img/nextcloud.png
Normal file
BIN
launcher/img/nextcloud.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 92 KiB |
62
launcher/index.html
Normal file
62
launcher/index.html
Normal file
@@ -0,0 +1,62 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
|
||||
|
||||
<title>Launcher</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<br><br><br>
|
||||
<div class="container">
|
||||
<h3>Web Apps</h3>
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-sm-2">
|
||||
<a href="http://127.0.0.1:4002" target="_blank" class="btn btn-outline-info">
|
||||
<img src="img/etherpad.png" style="max-width:100px;" alt="etherpad" title="etherpad">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<a href="http://127.0.0.1:4001" target="_blank" class="btn btn-outline-info">
|
||||
<img src="img/kanboard.png" style="max-width:100px;" alt="kanboard" title="kanboard">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<a href="http://127.0.0.1:4000" target="_blank" class="btn btn-outline-info">
|
||||
<img src="img/gogs.png" style="max-width:100px;" alt="gogs" title="gogs">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<a href="http://127.0.0.1:4000" target="_blank" class="btn btn-outline-info">
|
||||
<img src="img/nextcloud.png" style="max-width:100px;" alt="nextcloud" title="nextcloud">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br><br>
|
||||
<h3>Services</h3>
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-sm-2">
|
||||
<a href="http://127.0.0.1:64738" target="_blank" class="btn btn-outline-secondary">
|
||||
<img src="img/mumble.png" style="max-width:100px;" alt="mumble" title="mumble">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
||||
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
14
launcher/package.json
Normal file
14
launcher/package.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "launcher",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"bootstrap": "^4.1.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user