Skip to content

Instantly share code, notes, and snippets.

View tiagoanleite's full-sized avatar
🏡
Coding mostly from home

Tiago Leite tiagoanleite

🏡
Coding mostly from home
View GitHub Profile
{
"version": "2",
"templates": [
{
"type": 1,
"title": "Adguardhome-sync",
"name": "Adguardhome-sync",
"note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/adguardhome-sync/config</p>",
"description": "[Adguardhome-sync](https://github.com/bakito/adguardhome-sync/) is a tool to synchronize AdGuardHome config to replica instances.",
"platform": "linux",
@tiagoanleite
tiagoanleite / MSSQL_express.dockerfile
Last active October 24, 2019 12:20
MS SQL Express in Ubuntu
FROM Ubuntu:xenial
# Copies Microsoft install script for express (copied from https://docs.microsoft.com/en-us/sql/linux/sample-unattended-install-ubuntu?view=sql-server-ver15)
COPY install.sh .
# Executes install script
RUN chmod +x install.sh
RUN install.sh
# Exposes the ports
@tiagoanleite
tiagoanleite / simple-sidebar.css
Created May 16, 2018 11:42
Fixed Simple Sidebar
/*!
* Fixed Simple Sidebar by Tiago Leite (http://github.com/tiagoanleite)
* Based on Start Bootstrap - Simple Sidebar (https://startbootstrap.com/template-overviews/simple-sidebar)
* Copyright 2013-2017 Start Bootstrap. Copyright 2018 Tiago Leite.
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-simple-sidebar/blob/master/LICENSE)
*/
body {
overflow-x: hidden;
}