-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [ADD] Dockerfile and class optimizations * Enhancements added to LightCleaner * Some optimizations performed * Update health.py * Update lightest.py * Improve logic and reformatted * StorageController class improvement * Bug fixes and final tests * renew documents
- Loading branch information
Showing
22 changed files
with
915 additions
and
4,085 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Use the official Microsoft SQL Server image as the base image | ||
FROM mcr.microsoft.com/mssql/server:2022-latest | ||
|
||
# Set environment variables for non-interactive installation | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# Set the password for the SQL Server 'sa' user | ||
ENV SA_PASSWORD=vSk60DcYRU | ||
|
||
# Set the ACCEPT_EULA environment variable to accept the EULA | ||
ENV ACCEPT_EULA=Y | ||
|
||
# Expose SQL Server port | ||
EXPOSE 1433 | ||
|
||
# Start SQL Server | ||
CMD ["/opt/mssql/bin/sqlservr"] | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.