Skip to content

Instantly share code, notes, and snippets.

View destroylord's full-sized avatar
:octocat:
Remote

Dafrin Maulana destroylord

:octocat:
Remote
View GitHub Profile
@krisanalfa
krisanalfa / KeyGenerateCommand.php
Last active September 25, 2023 17:25
Lumen Key Generator Commands
<?php
namespace App\Console\Commands;
use Illuminate\Support\Str;
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
class KeyGenerateCommand extends Command
{
@irsyadulibad
irsyadulibad / docker-cheatsheet.sh
Last active February 16, 2022 05:39
Basic Docker Cheat Sheet
# Docker Image
## List all images
docker image ls
## Pull docker images
docker image pull image:tag
## Remove docker images
docker image rm image:tag
# Docker container
## Show all list of container