This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# based on: | |
#. doceker install: https://docs.docker.com/engine/install/debian/#install-using-the-repository | |
#. compose install: https://github.com/docker/compose#where-to-get-docker-compose | |
# | |
# usage: ansible-playbook -i hosts-file docker/docker-install.yaml | |
# | |
# contents of hosts-file: | |
# [docker] | |
# 192.168.0.101 | |
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
db: | |
image: mysql/mysql-server:5.7 | |
environment: | |
MYSQL_DATABASE: 'db' | |
MYSQL_ROOT_PASSWORD: 'secret-pw' | |
MYSQL_ROOT_HOST: '%' | |
ports: | |
- '3306:3306' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This work is derived from: | |
https://github.com/I-Connect/nuki_ble | |
Therefore licence is: GPL v3.0 | |
requirements: | |
GCC, libsodium | |
compile: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @class DecimalFormat | |
* @constructor | |
* @param {String} formatStr | |
* @author Oskan Savli | |
*/ | |
function DecimalFormat(formatStr) | |
{ | |
/** | |
* @fieldOf DecimalFormat |