Skip to content

Instantly share code, notes, and snippets.

View rizz5091660's full-sized avatar
🕶️
Life is awesome !!

Rizky Sani rizz5091660

🕶️
Life is awesome !!
View GitHub Profile
@rizz5091660
rizz5091660 / cert.sh
Created October 2, 2020 11:08 — forked from BretFisher/cert.sh
docker compose with traefik and certs
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
DOMAIN_NAME=$1
openssl req \
-newkey rsa:2048 \
-x509 \
-nodes \
@rizz5091660
rizz5091660 / .travis.yml
Created October 2, 2020 11:07 — forked from BretFisher/.travis.yml
Travis-CI Docker Image Build and Push to AWS ECR
sudo: required #is required to use docker service in travis
language: php #can be any language, just php for example
services:
- docker # required, but travis uses older version of docker :(
install:
- echo "install nothing!" # put your normal pre-testing installs here