Skip to content

Commit b6d8542

Browse files
author
mirkobrombin
committed
add gitignore
1 parent 6e16784 commit b6d8542

2 files changed

Lines changed: 25 additions & 2 deletions

File tree

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# If you prefer the allow list template instead of the deny list, see community template:
2+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3+
#
4+
# Binaries for programs and plugins
5+
*.exe
6+
*.exe~
7+
*.dll
8+
*.so
9+
*.dylib
10+
11+
# Test binary, built with `go test -c`
12+
*.test
13+
14+
# Output of the go coverage tool, specifically when used with LiteIDE
15+
*.out
16+
17+
# Dependency directories (remove the comment below to include it)
18+
# vendor/
19+
20+
# Go workspace file
21+
go.work

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
Containers Wrapper is a Go library that provides a convenient and unified interface for interacting with container engines such as Docker, Podman, and Containerd. It simplifies container management tasks by wrapping the low-level commands and providing Go functions for common container operations.
44

5-
> **Warning:** This library is at its first release and needs more testing. Please use it with caution.
5+
> **Warning**
6+
> This library is at its first release and needs more testing. Please use it with caution.
67
78
## Supported Container Engines
89

@@ -13,7 +14,8 @@ Containers Wrapper currently supports the following container engines:
1314
- [Containerd](https://containerd.io/) (partially supported)
1415
- [lilipod](https://github.com/89luca89/lilipod) (partially supported)
1516

16-
> **Note:** Containers Wrapper potentially supports any container engine that follows the Podman command interface, just populate the `ContainerEngine` field of the `CeOptions` struct with the name of the container engine you want to use.
17+
> **Note**
18+
> Containers Wrapper potentially supports any container engine that follows the Podman command interface, just populate the `ContainerEngine` field of the `CeOptions` struct with the name of the container engine you want to use.
1719
1820
## Features
1921

0 commit comments

Comments
 (0)