Skip to content
View mtilson's full-sized avatar
Block or Report

Block or report mtilson

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. how to run Shell commands from GitHu... how to run Shell commands from GitHub with help of Curl and shortened Git.io URLs [github]
    1
    ## How to run Shell commands from GitHub with help of Curl and shortened Git.io URLs [github]
    2
    
    
    3
    # With help of GitHub web UI create public repository (repository name: `REPO`) under 
    4
    #   your GitHub user account (user name: `USER`). This results in Git repository URL
    5
    #   of `https://github.com/USER/REPO.git`
  2. how to rebuild your web app containe... how to rebuild your web app container on every commit with local 'docker-compose' and 'post-commit' git hook [docker] [docker-compose] [git]
    1
    APPNAME=myapp
    2
    APPVERSION=latest
  3. how to trigger GitHub Actions workfl... how to trigger GitHub Actions workflows in different ways [git] [github] [workflow] [webhook]
    1
    #!/usr/bin/env bash
    2
    set -e
    3
    
    
    4
    # we are going to setup different GitHub Actions workflows on
    5
    #   GitHub repo '${repoName}' under GitHub user account '${userName}'
  4. how to set Git repository and global... how to set Git repository and global options for multiple GitHub accounts [git] [github]
    1
    #!/usr/bin/env bash
    2
    
    
    3
    # let's say we have GitHub 'org' with 'team' of 2 members 
    4
    #   ('member1', 'member2') having Write access to
    5
    #   'repo' with URL of 'https://github.com/org/repo.git' 
  5. how to create CI/CD pipeline on loca... how to create CI/CD pipeline on localhost with 'make' and 'docker' [golang] [makefile] [dockerfile]
    1
    # MI (modules image) is for getting dependencies.
    2
    # MI will be cached till the dependency changing.
    3
    # It is useful trick to speed up the process of building
    4
    FROM golang:1.13 as MI
    5
    ADD go.mod go.sum /m/
  6. dokuwiki dokuwiki Public

    Forked from crazy-max/docker-dokuwiki

    🐳 DokuWiki Docker image on Alpine and Nginx with Træfik, Let's Encrypt and backup/restore to/from Git repo

    Shell 7 1