Initial commit of Docker files

This commit is contained in:
2025-08-18 00:26:57 +12:00
commit 05297cf246
29 changed files with 2517 additions and 0 deletions

31
docker-compose.yml Executable file
View File

@@ -0,0 +1,31 @@
# Main orchestration file - includes all service stacks
# Use profiles to control which services run in different environments
include:
- compose/media-stack.yml
- compose/utilities.yml
- compose/document-management.yml
- compose/monitoring.yml
# Global networks
networks:
arr_network:
driver: bridge
ipam:
config:
- subnet: 172.20.0.0/16
database_network:
driver: bridge
ipam:
config:
- subnet: 172.21.0.0/16
# Global volumes
volumes:
aidata:
driver: local
dbdata:
driver: local
redisdata:
driver: local