My server installation recipes
Find a file
2024-12-08 19:09:45 +01:00
01-blog Customize to setup a VM 2024-12-08 19:09:45 +01:00
02-selfoss Customize to setup a VM 2024-12-08 19:09:45 +01:00
03-shaarli Customize to setup a VM 2024-12-08 19:09:45 +01:00
04-gitea Customize to setup a VM 2024-12-08 19:09:45 +01:00
05-wallabag Customize to setup a VM 2024-12-08 19:09:45 +01:00
06-heimdall Customize to setup a VM 2024-12-08 19:09:45 +01:00
.env.default Customize to setup a VM 2024-12-08 19:09:45 +01:00
.gitignore git ignore 2022-04-03 18:52:09 +02:00
README.md README 2022-07-14 17:35:42 +02:00
run-docker-compose.sh Customize to setup a VM 2024-12-08 19:09:45 +01:00

Hosting

My server installation recipes (Inspired from https://github.com/tomMoulard/make-my-server)

Bash function to override docker-compose command and manage multiple docker-compose.yml files (non executable YAML files are ignored).

export DOCKER_COMPOSE_BIN='/usr/bin/docker compose'
docker-compose ()
{
    $DOCKER_COMPOSE_BIN $(find -name 'docker-compose*.yml' -type f -perm -u+x -printf '%p\t%d\n'  2>/dev/null | sort -n -k2 | cut -f 1 | awk '{print "-f "$0}') $@
}

Compose files refer to service profiles:

  • disabled: set for services I don't use
  • testing: enable SSL configuration relying on https://traefik.me for local testing
  • production: enable domain configuration on deployment server

Network diagram:

network diag