2022-03-05 15:03:09 +01:00
2022-01-05 20:39:12 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-03-05 15:03:09 +01:00
2022-02-27 19:06:06 +01:00
2020-06-27 14:55:16 +02:00
2022-03-05 14:59:24 +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

Description
My server installation recipes
Readme 568 KiB
Languages
Shell 100%