My server installation recipes
Find a file
2022-07-14 14:35:09 +02:00
0 add gitea 2022-07-14 14:35:09 +02:00
__doc__ update photo network 2022-01-05 20:39:12 +01:00
baikal compose version 3.8 2022-03-05 15:03:09 +01:00
blog compose version 3.8 2022-03-05 15:03:09 +01:00
deluge compose version 3.8 2022-03-05 15:03:09 +01:00
dokuwiki compose version 3.8 2022-03-05 15:03:09 +01:00
glances compose version 3.8 2022-03-05 15:03:09 +01:00
netdata compose version 3.8 2022-03-05 15:03:09 +01:00
photo fix volume names 2022-06-30 12:31:06 +02:00
portainer compose version 3.8 2022-03-05 15:03:09 +01:00
posteio compose version 3.8 2022-03-05 15:03:09 +01:00
seafile disable seafile 2022-06-19 09:22:50 +02:00
selfoss compose version 3.8 2022-03-05 15:03:09 +01:00
shaarli compose version 3.8 2022-03-05 15:03:09 +01:00
source add gitea 2022-07-14 14:35:09 +02:00
traefik rename container 2022-03-06 13:00:33 +01:00
wallabag compose version 3.8 2022-03-05 15:03:09 +01:00
www add heimdall dashboard 2022-03-13 17:57:56 +01:00
.env.default add gitea 2022-07-14 14:35:09 +02:00
.gitignore git ignore 2022-04-03 18:52:09 +02:00
README.md use service profiles 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