First add

This commit is contained in:
traveler 2025-01-22 10:39:29 -06:00
commit 520b60e8ad
19 changed files with 1898 additions and 0 deletions

55
docker-compose.yaml Executable file
View file

@ -0,0 +1,55 @@
version: "2.2"
include:
- NG-arr.yaml
- NG-Downloaders.yaml
- NG-Media.yaml
- NG-Mgmt-Tools.yaml
- NG-PlexSupport.yaml
- NG-RemoteAccess.yaml
- NG-UserServices.yaml
- NG-Vikunja.yaml
- NG-UserServices-Joplin.yaml
#: - NG-Mailu.yaml
- NG-Whoogle.yaml
# - NG-Utils.yaml
services:
# vars are stored in .env.
#Database
mysql:
image: mysql:latest
container_name: mysql
hostname: mysql
ports:
- 3306:3306
volumes:
- /DockerVol/mysql/var/lib:/var/lib/mysql
networks:
- netgrimoire
environment:
- TZ=America/Chicago
- PGID=999
- PUID=1001
- MYSQL_ROOT_PASSWORD=F@lcon12
- MYSQL_DATABASE=monica
- MYSQL_USER=homestead
- MYSQL_PASSWORD=secret
restart: unless-stopped
networks:
netgrimoire:
external: true