Skip to content

Instantly share code, notes, and snippets.

View Davidelanz's full-sized avatar
🤖

Davide Lanza Davidelanz

🤖
View GitHub Profile
@Davidelanz
Davidelanz / GPLv3.md
Created June 25, 2023 15:59 — forked from kn9ts/GPLv3.md
GPLv3 explained

GPL3 LICENSE SYNOPSIS

TL;DR* Here's what the license entails:

1. Anyone can copy, modify and distribute this software.
2. You have to include the license and copyright notice with each and every distribution.
3. You can use this software privately.
4. You can use this software for commercial purposes.
5. If you dare build your business solely from this code, you risk open-sourcing the whole code base.
@Davidelanz
Davidelanz / docker-cleanup-resources.md
Created June 20, 2023 17:23 — forked from bastman/docker-cleanup-resources.md
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

$ docker volume rm $(docker volume ls -qf dangling=true)

$ docker volume ls -qf dangling=true | xargs -r docker volume rm

@Davidelanz
Davidelanz / linux_utilities.md
Last active April 24, 2023 10:29
Linux utilities

Linux utilities

This is a series of gists collecting Linux utilities