1
1
<img alt =" Simple Secrets Manager " src =" https://github.com/bearlike/simple-secrets-manager/raw/main/docs/img/gh_banner.png " />
2
2
<p align =" center " >
3
- <a href="https://hub.docker.com/r/krishnaalagiri/ssm"><img alt="Docker Image Latest Version" src="https://img.shields.io/docker/v/krishnaalagiri/ssm?logo=docker&sort=semver"></a>
4
- <a href="https://hub.docker.com/r/krishnaalagiri/ssm"><img alt="Docker Image Architecture" src="https://img.shields.io/badge/architecture-arm64v8%20%7C%20x86__64-blue?logo=docker"></a>
3
+ <a href="https://hub.docker.com/r/krishnaalagiri/ssm/tags "><img alt="Docker Image Latest Version" src="https://img.shields.io/docker/v/krishnaalagiri/ssm?logo=docker&sort=semver"></a>
4
+ <a href="https://hub.docker.com/r/krishnaalagiri/ssm/tags "><img alt="Docker Image Architecture" src="https://img.shields.io/badge/architecture-arm64v8%20%7C%20x86__64-blue?logo=docker"></a>
5
5
<a href="https://github.com/bearlike/simple-secrets-manager/actions/workflows/ci.yml"><img alt="GitHub Repository" src="https://img.shields.io/github/workflow/status/bearlike/simple-secrets-manager/Build%20and%20deploy%20multiarch%20image?logo=github"></a>
6
6
<a href="https://github.com/bearlike/simple-secrets-manager"><img alt="GitHub Repository" src="https://img.shields.io/badge/GitHub-bearlike%2Fsimple--secrets--manager-blue?logo=github"></a>
7
7
<a href="https://github.com/bearlike/simple-secrets-manager/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/bearlike/simple-secrets-manager"></a>
@@ -13,8 +13,8 @@ Secure storage, and delivery for tokens, passwords, API keys, and other secrets
13
13
14
14
15
15
## Supported tags and respective [ Dockerfile] ( https://github.com/bearlike/simple-secrets-manager/blob/main/Dockerfile ) links
16
- - [ ` 1.1.0 ` , ` 1.1 ` , ` 1 ` , ` latest ` ] ( https://github.com/bearlike/simple-secrets-manager/blob/main /Dockerfile )
17
- - [ ` 1.0.0 ` , ` 1.0 ` ] ( https://github.com/bearlike/simple-secrets-manager/blob/dad59e8bda7eaeddd2e14660958d3227ac035b3d /Dockerfile )
16
+ - [ ` 1.1.0 ` , ` 1.1 ` , ` 1 ` , ` latest ` ] ( https://github.com/bearlike/simple-secrets-manager/blob/releases/v1.1.0 /Dockerfile )
17
+ - [ ` 1.0.0 ` , ` 1.0 ` ] ( https://github.com/bearlike/simple-secrets-manager/blob/releases/v1.0.0 /Dockerfile )
18
18
19
19
20
20
## Quick reference (cont.)
@@ -39,9 +39,10 @@ Hashi Corp Vault works well but it was meant for enterprises. Therefore, it was
39
39
40
40
41
41
## Available authentication methods
42
- | Auth Methods | Description |
43
- | ------------ | ------------------------------------------- |
44
- | ` token ` | Allows users to authenticate using a token. |
42
+ | Auth Methods | Description |
43
+ | -------------------| ---------------------------------------------|
44
+ | ` userpass ` | Allows users to authenticate using a username and password combination. |
45
+ | ` token ` | Allows users to authenticate using a token. Token generation requires users to be authenticated via ` userpass ` |
45
46
46
47
47
48
## Getting started
@@ -50,13 +51,18 @@ Hashi Corp Vault works well but it was meant for enterprises. Therefore, it was
50
51
51
52
``` yaml
52
53
version : ' 3'
54
+ volumes :
55
+ mongo_data :
56
+
53
57
services :
54
58
mongo :
55
59
image : mongo:4
56
60
restart : always
57
61
environment :
58
62
MONGO_INITDB_ROOT_USERNAME : root
59
63
MONGO_INITDB_ROOT_PASSWORD : password
64
+ volumes :
65
+ - mongo_data:/data/db
60
66
networks :
61
67
- app-tier
62
68
0 commit comments