Skip to content

Instantly share code, notes, and snippets.

View jjuanrivvera99's full-sized avatar
💻
Coding!!

Juan Felipe Rivera González jjuanrivvera99

💻
Coding!!
View GitHub Profile
# https://docs.docker.com/engine/admin/systemd/
Many Linux distributions use systemd to start the Docker daemon. This document shows a few examples of how to customize Docker’s settings.
Starting the Docker daemon
Once Docker is installed, you will need to start the Docker daemon.
$ sudo systemctl start docker
# or on older distributions, you may need to use
$ sudo service docker start
If you want Docker to start at boot, you should also:
@jjuanrivvera99
jjuanrivvera99 / mssql-docker-compose.yml
Last active June 20, 2024 17:32
SQL Server with Docker Compose
version: '3.3'
services:
mssql:
container_name: sql-server
image: mcr.microsoft.com/mssql/server:2017-latest
#image: mcr.microsoft.com/mssql/server:2017-CU11-ubuntu
restart: always
environment:
ACCEPT_EULA: "Y"
@jjuanrivvera99
jjuanrivvera99 / netdata.md
Last active August 14, 2019 14:28
Monitoreo con NetData

Monitoreo con NetData

Fuente: https://docs.netdata.cloud/

Markdown Monster icon

La instalación de netdata tendrá que hacerse tanto en el maestro como en los esclavos con el siguiente comando:

@jjuanrivvera99
jjuanrivvera99 / index.html
Created March 26, 2020 18:37
Vue/Bootstrap Template
<div id="app">
<nav class="navbar navbar-light bg-light fixed-top">
<div class="navbar-text ml-auto">
<b>cart:</b>
<span class="badge badge-pill badge-success"></span>
</div>
</nav>
<div class="form-inline mr-auto mt-5">
@jjuanrivvera99
jjuanrivvera99 / recaptcha.py
Created December 8, 2020 04:36 — forked from anton-petrov/recaptcha.py
Solve reCAPTCHA with Selenium + Python
import re, csv
from time import sleep, time
from random import uniform, randint
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import NoSuchElementException
version: '3.7'
services:
php:
image: jjuanrivvera99/laravel:mysql-alpine
restart: always
depends_on:
- redis
volumes:
@jjuanrivvera99
jjuanrivvera99 / Dockerfile
Created June 22, 2021 00:23
dockerfile-laravel-php-7.2
FROM ubuntu:18.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -yqq && apt-get install -yq --no-install-recommends \
apt-utils \
curl \
# Install git
git \
# Install apache