Skip to content

Commit

Permalink
update README with note on LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm committed Dec 9, 2024
1 parent c1ddd51 commit 5814048
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 2 deletions.
Empty file added .meta/codespell-excludes
Empty file.
1 change: 1 addition & 0 deletions .meta/codespell-ignores
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tre
39 changes: 39 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v5.0.0"
hooks:
# General
- id: check-added-large-files
- id: check-case-conflict
- id: check-merge-conflict
- id: detect-private-key
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
# General
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
- repo: https://github.com/codespell-project/codespell
rev: "v2.3.0"
hooks:
- id: codespell
args:
[
--ignore-words,
.meta/codespell-ignores,
--exclude-file,
.meta/codespell-excludes,
--ignore-regex,
'\Whttps?://\S*',
]
- repo: https://github.com/rkm/pre-commit-nocommit
rev: "v1.0.0"
hooks:
- id: nocommit
exclude: |
(?x)^(
.pre-commit-config.yaml
)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# TRE Container Samples

_WIP_
Dockerfiles for use with EPCC's [TRE](https://docs.eidf.ac.uk/safe-haven-services/overview/) [Container Execution Service (CES)](https://docs.eidf.ac.uk/safe-haven-services/tre-container-user-guide/introduction/).

Sample configurations for the TRE Container Execution Service (CES).
Please note the terms of the included [MIT License](./LICENSE), particularly, `THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND`. The files here are examples only, and should be tested against your particular use case.

## Documentation

Expand Down

0 comments on commit 5814048

Please sign in to comment.