Skip to content

Commit 5814048

Browse files
committed
update README with note on LICENSE
1 parent c1ddd51 commit 5814048

File tree

4 files changed

+42
-2
lines changed

4 files changed

+42
-2
lines changed

.meta/codespell-excludes

Whitespace-only changes.

.meta/codespell-ignores

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tre

.pre-commit-config.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
repos:
3+
- repo: https://github.com/pre-commit/pre-commit-hooks
4+
rev: "v5.0.0"
5+
hooks:
6+
# General
7+
- id: check-added-large-files
8+
- id: check-case-conflict
9+
- id: check-merge-conflict
10+
- id: detect-private-key
11+
- id: end-of-file-fixer
12+
- id: mixed-line-ending
13+
- id: trailing-whitespace
14+
# General
15+
- repo: meta
16+
hooks:
17+
- id: check-hooks-apply
18+
- id: check-useless-excludes
19+
- repo: https://github.com/codespell-project/codespell
20+
rev: "v2.3.0"
21+
hooks:
22+
- id: codespell
23+
args:
24+
[
25+
--ignore-words,
26+
.meta/codespell-ignores,
27+
--exclude-file,
28+
.meta/codespell-excludes,
29+
--ignore-regex,
30+
'\Whttps?://\S*',
31+
]
32+
- repo: https://github.com/rkm/pre-commit-nocommit
33+
rev: "v1.0.0"
34+
hooks:
35+
- id: nocommit
36+
exclude: |
37+
(?x)^(
38+
.pre-commit-config.yaml
39+
)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# TRE Container Samples
22

3-
_WIP_
3+
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/).
44

5-
Sample configurations for the TRE Container Execution Service (CES).
5+
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.
66

77
## Documentation
88

0 commit comments

Comments
 (0)