Skip to content

Instantly share code, notes, and snippets.

View taufiqpsumarna's full-sized avatar
🏠
Work From Home

Taufiq Permana taufiqpsumarna

🏠
Work From Home
View GitHub Profile
@taufiqpsumarna
taufiqpsumarna / .gitlab-ci.yaml
Last active August 29, 2022 08:13
Gitlab Pipeline Remote SSH To Server Staging Auto Deploy & Production Manual Deploy
#Pipeline Created by Taufiq - 2022
image: alpine:latest
stages:
- build-server-stg
- deploy-server-stg
- build-server-prd
- deploy-server-prd
################################################
#Staging pipeline configuration : Auto Deployment
@taufiqpsumarna
taufiqpsumarna / .env
Last active September 6, 2022 02:27
Vaultwarden Docker Compose
#Apps Setting
WEBSOCKET_ENABLED=true
LOG_FILE=./vw-data/log
LOG_LEVEL=Info
## Web vault settings
WEB_VAULT_FOLDER=./vw-data/web-vault/
WEB_VAULT_ENABLED=true
#Signup Rule
@taufiqpsumarna
taufiqpsumarna / README.md
Last active August 29, 2022 09:24
Docker Mongodump Upload To S3 Automated Script & Mongorestore

Mongodump

docker exec <container_name> sh -c 'mongodump --authenticationDatabase admin -u <DB_USER> -p <DB_PASS> --db <DB_NAME> --archive' > /home/ubuntu/db.dump

Mongorestore

Rename file to db.dump than execute this command

docker exec -i sh -c 'mongorestore --authenticationDatabase admin -u -p --db --archive' < /home/ubuntu/db.dump

@taufiqpsumarna
taufiqpsumarna / README.md
Last active August 29, 2022 09:24
MongoDB Dump
@taufiqpsumarna
taufiqpsumarna / Workflow.md
Last active August 29, 2022 09:25
Gitlab CI/CD Push To ECR and Deploy To Server Use Docker-Compose

CI / CD Flow

  1. Build
  2. Push To ECR
  3. Deploy To Staging Server With Docker Installed
  4. Deploy To Production Server With Docker Installed

Notes:

  1. You Must Setup Variable in Gitlab.
  • AWS_ACCESS_KEY_ID = AWS IAM ACCESS KEY
  • AWS_SECRET_ACCESS_KEY = AWS IAM SECRET KEY
@taufiqpsumarna
taufiqpsumarna / gitlab-ci.yml
Created July 14, 2022 06:38
GitLab CI CD Tutorial for Beginners [Crash Course] From TechWorld with Nana
variables:
IMAGE_NAME: nanajanashia/demo-app
IMAGE_TAG: python-app-1.0
stages:
- test
- build
- deploy
run_tests:
@taufiqpsumarna
taufiqpsumarna / gitlab-ci.yml
Created July 14, 2022 04:07
Simple example of CI to build a Docker container and push it to Amazon ECR
# Simple example of CI to build a Docker container and push it to Amazon ECR
variables:
DOCKER_REGISTRY: 000000000000.dkr.ecr.eu-west-1.amazonaws.com
AWS_DEFAULT_REGION: eu-west-1
APP_NAME: ecr_demo
DOCKER_HOST: tcp://docker:2375
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
publish:
@taufiqpsumarna
taufiqpsumarna / SSL-nginx-Docker.md
Created July 12, 2022 03:11 — forked from dahlsailrunner/SSL-nginx-Docker.md
SSL with Docker images using nginx as reverse proxy

Docker with SSL and an nginx reverse proxy

Running your ASP.NET Core (or other) application in Docker using SSL should not be an overwhelming task. These steps should do the trick.

Run the following steps from a Linux terminal (I used WSL or WSL2 on Windows from the Windows Terminal).

1. Create a conf file with information about the cert you'll be creating

It should look something like the content below; call it my-site.conf or something like that.

@taufiqpsumarna
taufiqpsumarna / migrate_s3_to_another_account
Last active July 8, 2022 06:28
This Gist Show How To Migrate S3 To Another Account
### Source Policy IAM
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetObject"
],
@taufiqpsumarna
taufiqpsumarna / certbot_nginx
Created July 7, 2022 09:42
Cerbot SSL Let's Encrypt nginx
### Install Certbot and it’s Nginx plugin with apt:
sudo apt install certbot python3-certbot-nginx
### To check, open the configuration file for your domain using nano or your favorite text editor:
sudo nano /etc/nginx/sites-available/example.com
### Obtaining an SSL Certificate
sudo certbot --nginx -d example.com -d www.example.com
This runs certbot with the --nginx plugin, using -d to specify the domain names we’d like the certificate to be valid for.