Skip to content

Instantly share code, notes, and snippets.

View Appendme's full-sized avatar
😶‍🌫️

Daniel Appendme

😶‍🌫️
View GitHub Profile
@Appendme
Appendme / .gitconfig
Created April 25, 2024 03:19
.gitconfig
[core]
autocrlf = input
commentChar = ";"
[alias]
ss = status
cc = checkout
lon = log --oneline
ds = diff --staged
df = diff
rs = restore --staged
@Appendme
Appendme / Dockefile
Created November 5, 2024 08:25
mongo
mongo:
image: mongo:7.0.5
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: p@ssword$
MONGO_REPLICA_SET_NAME: rs0
entrypoint:
- bash
- -c
- |