Skip to content

Instantly share code, notes, and snippets.

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

Ainun Abdullah abdullahainun

🏠
Working from home
View GitHub Profile
@abdullahainun
abdullahainun / docker-compose.yml
Last active February 8, 2026 02:21
smekmask tkj
version: '3.3'
services:
# --- DNS Server ---
technitium:
image: technitium/dns-server:latest
container_name: technitium-dns
hostname: technitium-dns
ports:
- "53:53/udp"
@abdullahainun
abdullahainun / setup.sh
Created February 8, 2026 05:26
setup server tkj
#!/bin/bash
# --- PRE-SETUP ---
echo "Membersihkan konfigurasi lama..."
docker-compose down 2>/dev/null
# Menghapus database lama agar fresh install
sudo rm -rf ./zabbix/db_data
# 1. Buat struktur folder yang dibutuhkan
echo "Membuat folder project..."

Readme

ssh student@192.168.30.10

sudo apt update
sudo apt install docker docker-compose -y
sudo su
usermod -aG docker student
reboot
name: CI/CD
on:
push:
branches: [main]
tags: ["v*.*.*"]
pull_request:
branches: [main]
jobs: