Skip to content
View jesugmz's full-sized avatar

Block or report jesugmz

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. url-obfuscation url-obfuscation Public

    Different methods to obfuscate URLs

    30 7

  2. portfolio portfolio Public

    My personal portfolio

    HTML 1

  3. netcat-docker netcat-docker Public

    All netcat Debian versions Dockerized

    Dockerfile 1

  4. http-health-check http-health-check Public

    Simple HTTP health check written in PHP

    PHP 2

  5. Create a simple multi cloud Docker c... Create a simple multi cloud Docker cluster using Docker Swarm, Docker Machine and the three top cloud providers nowadays - Google Compute Engine, Microsoft Azure and AWS
    1
    # Simple multi cloud Docker cluster using Docker Swarm
    2
    
                  
    3
    This guide explains how to create a simple multi cloud Docker cluster using Docker Swarm, Docker Machine and the three top cloud providers nowadays - Google Compute Engine, Microsoft Azure and AWS.
    4
    
                  
    5
    ## Prerequisites
  6. Example how to build Docker multi-st... Example how to build Docker multi-stage image using official PHP and Composer images
    1
    ARG PHP_VERSION=7.2-fpm-stretch
    2
    ARG COMPOSER_VERSION=latest
    3
    
                  
    4
    # builder stage
    5
    FROM php:$PHP_VERSION AS builder