Skip to content

Instantly share code, notes, and snippets.

View ilhamarrouf's full-sized avatar
🏠
Working from home

Ilham Arrouf ilhamarrouf

🏠
Working from home
View GitHub Profile

All About PHP

<_List Material on PHP _>

  • Pengenalan
    • Bahasa pemrograman
    • Web : browser, server
    • HTML
    • Server side processing / dynamic web
@ilhamarrouf
ilhamarrouf / git.md
Created August 31, 2017 10:22 — forked from akuikialie/git.md
Start Your Project Wit GIT

How To Start Project With GIT

<GIT List Command>

  • Stage #1
    • git init - URL
    • git clone - URL
    • git config - URL
    • git add - URL
  • git commit - URL
@ilhamarrouf
ilhamarrouf / docker-compose.yml
Created May 28, 2019 04:00 — forked from sen0rxol0/docker-compose.yml
Nuxt.js with SSR featuring “Docker Multi-stage build” and “node-prune"
version: '3.5'
services:
app:
build: .
volumes:
- '.:/app'
ports:
- '3000:80'
environment:
@ilhamarrouf
ilhamarrouf / docker-volume-transfer.md
Created August 23, 2024 02:21 — forked from etoosamoe/docker-volume-transfer.md
How to transfer Docker Volumes to another host

Goal

You have docker volume on one host and want to move that volume to another host. For example, you want to transfer PostgreSQL container with it's volume to another host.

Solution

Actually, there is no in-a-box solution from Docker, so we need to:

  • attach our volume to another container
  • copy and archive all files
  • copy archive to another host
@ilhamarrouf
ilhamarrouf / install.sh
Last active March 5, 2025 04:03 — forked from safebuffer/install.sh
Install FortiClient 7.0 VPN on Kali Linux
wget https://filestore.fortinet.com/forticlient/downloads/forticlient_vpn_7.2.2.0753_amd64.deb
sudo nano /etc/apt/sources.list
deb [arch=amd64] https://repo.fortinet.com/repo/7.0/ubuntu xenial multiverse
deb http://ftp.de.debian.org/debian bookworm main
sudo wget -O - https://repo.fortinet.com/repo/7.0/ubuntu/DEB-GPG-KEY | sudo apt-key add -
sudo apt update
sudo dpkg -i forticlient_vpn_7.2.2.0753_amd64.deb
sudo apt -f install