Sync data folder contents
Docker Build / Build Docker image (push) Successful in 6s

This commit is contained in:
unknown
2026-06-10 13:41:57 +09:00
parent 1f8d0d678d
commit 58cae670c5
10 changed files with 13 additions and 12 deletions
+6
View File
@@ -25,3 +25,9 @@ backend/instance/
!data/**/*.XLSM !data/**/*.XLSM
!data/**/*.xlsx !data/**/*.xlsx
sam.txt sam.txt
# The Docker image intentionally includes committed data contents. Keep local
# env files out of the build context because they may contain credentials.
!data/
!data/**
data/**/.env
+6 -11
View File
@@ -9,19 +9,14 @@ backend/instance/*.db
*.sqlite *.sqlite
*.sqlite3 *.sqlite3
data/temp/
data/system/archive/
data/system/backup/
data/system/logs/
data/system/mac_backup/
data/repository/
!data/repository/
!data/repository/xml/
!data/repository/xml/**
data/nfs/
.pytest_cache/ .pytest_cache/
.coverage .coverage
htmlcov/ htmlcov/
*.log *.log
# The Docker image bundles data contents. Keep data files visible to Git, but
# never commit local env files that may contain credentials.
!data/
!data/**
data/**/.env
+1 -1
View File
@@ -26,7 +26,7 @@ fetch_idrac_info() {
local IDRAC_IP=$(cat $IP_FILE) local IDRAC_IP=$(cat $IP_FILE)
# DellEMC Server # DellEMC Server
local set=$(racadm -r $IDRAC_IP -u $IDRAC_USER -p $IDRAC_PASS iDRAC.Users.3.UserName "") local set=$(racadm -r $IDRAC_IP -u $IDRAC_USER -p $IDRAC_PASS iDRAC.Users.3.UserName "")
rm -f $IP_FILE rm -f $IP_FILE
} }