Browse Source

dudle added

master
arnaucode 5 years ago
parent
commit
45890d1df4
5 changed files with 44 additions and 9 deletions
  1. +3
    -1
      README.md
  2. +8
    -0
      docker-compose.yml
  3. BIN
      launcher/img/dudle.png
  4. +31
    -7
      launcher/index.html
  5. +2
    -1
      launcher/package.json

+ 3
- 1
README.md

@ -8,7 +8,7 @@ Set of tools inside Docker containers, using docker-compose.
- [x] mumble (murmur) (https://www.mumble.com/)
- [ ] etherpad (http://etherpad.org/) / cryptopad
- [ ] nextcloud
- [ ] dudle (https://github.com/kellerben/dudle/)
- [x] dudle (https://github.com/kellerben/dudle/)
- [ ] matrix/rocketchat
- [ ] draw.io
@ -27,6 +27,8 @@ Ports:
- 4001
- etherpad
- 4002
- dudle
- 4003
In the directory /launcher there is a webapp with links to all the services.

+ 8
- 0
docker-compose.yml

@ -10,6 +10,7 @@ services:
- kanboard_data:/var/www/app/data
- kanboard_plugins:/var/www/app/plugins
- kanboard_ssl:/etc/nginx/ssl
postgres:
image: postgres:9.5
restart: always
@ -22,6 +23,7 @@ services:
- "db-data:/var/lib/postgresql/data"
networks:
- gogs
gogs:
image: gogs/gogs:latest
restart: always
@ -46,6 +48,12 @@ services:
- "64738:64738/udp"
restart: always
dudle:
image: jaydee2202/dudle
restart: always
ports:
- "4003:80"
launcher:
build: ./launcher
ports:

BIN
launcher/img/dudle.png

Before After
Width: 512  |  Height: 512  |  Size: 6.9 KiB

+ 31
- 7
launcher/index.html

@ -9,35 +9,46 @@
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link href="node_modules/cssmaterialcolors/colors.css" rel="stylesheet">
<title>Launcher</title>
</head>
<body>
<br><br><br>
<nav class="navbar navbar-light c_indigoG500to300">
<a class="navbar-brand" href="#">tools-containers - Launcher</a>
</nav>
<br><br>
<div class="container">
<h1>tools-containers - Launcher</h1>
<br><br>
<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">
<a href="http://127.0.0.1:4002" target="_blank" class="btn btn-outline-info" data-toggle="tooltip" data-placement="bottom" title="etherpad">
<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">
<a href="http://127.0.0.1:4001" target="_blank" class="btn btn-outline-info" data-toggle="tooltip" data-placement="bottom" title="kanboard">
<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">
<a href="http://127.0.0.1:4000" target="_blank" class="btn btn-outline-info" data-toggle="tooltip" data-placement="bottom" title="gogs">
<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">
<a href="http://127.0.0.1:4000" target="_blank" class="btn btn-outline-info" data-toggle="tooltip" data-placement="bottom" title="nextcloud">
<img src="img/nextcloud.png" style="max-width:100px;" alt="nextcloud" title="nextcloud">
</a>
</div>
<div class="col-sm-2">
<a href="http://127.0.0.1:4003" target="_blank" class="btn btn-outline-info" data-toggle="tooltip" data-placement="bottom" title="dudle">
<img src="img/dudle.png" style="max-width:100px;" alt="dudle" title="dudle">
</a>
</div>
</div>
<br><br>
@ -45,9 +56,13 @@
<hr>
<div class="row">
<div class="col-sm-2">
<a href="http://127.0.0.1:64738" target="_blank" class="btn btn-outline-secondary">
<!-- <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>
</a> -->
<button type="button" class="btn btn-outline-secondary" data-toggle="popover" title="Mumble (Murmur server)" data-content="Service running at port 64738" data-placement="bottom">
<img src="img/mumble.png" style="max-width:100px;" alt="mumble" title="mumble">
</button>
</div>
</div>
</div>
@ -57,6 +72,15 @@
<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>
<script>
$(function () {
$('[data-toggle="popover"]').popover()
})
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</body>
</html>

+ 2
- 1
launcher/package.json

@ -9,6 +9,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.1.1"
"bootstrap": "^4.1.1",
"cssmaterialcolors": "^1.0.0"
}
}

Loading…
Cancel
Save