Skip to content

Instantly share code, notes, and snippets.

View v8tix's full-sized avatar
🌎
Work so hard that people think the 👽s did it !

Marco Almeida v8tix

🌎
Work so hard that people think the 👽s did it !
View GitHub Profile
@v8tix
v8tix / 0-go-os-arch.md
Created September 19, 2021 21:16 — forked from asukakenji/0-go-os-arch.md
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@v8tix
v8tix / docker-compose-mongo-replicaset.yml
Created October 1, 2020 16:15 — forked from asoorm/docker-compose-mongo-replicaset.yml
Mongo Replica Set docker compose
version: "3"
services:
mongo1:
hostname: mongo1
container_name: localmongo1
image: mongo:4.0-xenial
expose:
- 27017
ports:
- 27011:27017