Skip to content

Instantly share code, notes, and snippets.

View felixknorre's full-sized avatar

Felix Knorre felixknorre

  • Siegburg, Germany
View GitHub Profile
@felixknorre
felixknorre / guide.md
Last active August 18, 2024 11:55
HOW TO CREATE A MINECRAFT FORGE/CURSEFORGE SERVER WITH DOCKER
@felixknorre
felixknorre / pigateway.md
Last active May 6, 2021 08:48
NAPT with a Raspberry Pi

Raspberry Pi Gateway

update packages

sudo apt update
sudo apt upgrade

change password

@felixknorre
felixknorre / .gitlab-ci.yml
Last active June 24, 2024 19:24
CI/CD of CakePHP with Gitlab Pipelines and PHPloy
image: your.php.docker.image
services:
- mysql:5.7
before_script:
- apt-get update -yqq
- apt-get install git -yqq
- curl -sS https://getcomposer.org/installer | php
- php composer.phar update --lock --prefer-dist --no-cache