Skip to content

Instantly share code, notes, and snippets.

View jbcdnr's full-sized avatar

Jean-Baptiste Cordonnier jbcdnr

View GitHub Profile
@linuxkathirvel
linuxkathirvel / nfs-server-and-client-installation-in-debian.md
Last active July 13, 2021 04:00
NFS Server and Client installation in Debian

NFS Server and Client installation in Debian

Server Side

sudo apt update
sudo apt install nfs-kernel-server nfs-common
sudo mkdir /data/nfs-mount
sudo chown username:groupname /data/nfs-mount
sudo chmod 755 /data/nfs-mount
sudo vim /etc/exports
# Add below line in /etc/exports
@laribee
laribee / docker-compose.yml
Created March 12, 2017 02:09
Drone + Gogs Docker Compose File
gogs:
image: gogs/gogs:latest
ports:
- "10021:3000"
- "10022:22"
volumes:
- ./data:/data
drone:
image: drone/drone:0.4
ports: