mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2025-08-31 21:54:57 +02:00
40 lines
1.6 KiB
Makefile
40 lines
1.6 KiB
Makefile
#//////////////////////////////////////////////////////////////
|
|
#// //
|
|
#// Script, 2022 //
|
|
#// Created: 14, April, 2022 //
|
|
#// Modified: 30, November, 2024 //
|
|
#// file: - //
|
|
#// - //
|
|
#// Source: //
|
|
#// OS: ALL //
|
|
#// CPU: ALL //
|
|
#// //
|
|
#//////////////////////////////////////////////////////////////
|
|
|
|
ADMIN_SERVICES := openssh uptime-kuma
|
|
#BLOG_SERVICES := wordpress
|
|
#7DAYS_TO_DIE_SERVICES := 7daystodie_server 7daystodie_backup
|
|
#MINECRAFT_SERVICES := minecraft_server minecraft_backup
|
|
#SATISFACTORY_SERVICES := satisfactory_server satisfactory_backup
|
|
GIT_SERVICES := forgejo
|
|
# forgejo-runner
|
|
# gitea gitea-runner
|
|
#IA_SERVICES := open-webui
|
|
SHARING_SERVICES := privatebin
|
|
# jellyfin
|
|
# psitransfer picoshare projectsend dufs syncthing
|
|
TORRENTS_SERVICES := qbittorrent
|
|
# transmission
|
|
UTILS_SERVICES := it-tools omni-tools cyberchef
|
|
# stirlingpdf
|
|
MAIN_SERVICES := main_infrastructure caddy homepage
|
|
|
|
PROJECT_DIRECTORY := infrastructure
|
|
|
|
DOCKER_PROFILES := $(MAIN_SERVICES) $(ADMIN_SERVICES) $(BLOG_SERVICES) \
|
|
$(7DAYS_TO_DIE_SERVICES) $(MINECRAFT_SERVICES) $(SATISFACTORY_SERVICES) \
|
|
$(GIT_SERVICES) $(IA_SERVICES) $(SHARING_SERVICES) \
|
|
$(TORRENTS_SERVICES) $(UTILS_SERVICES)
|
|
|
|
include DockerCompose.mk
|