Skip to content

Commit 057d7d8

Browse files
committed
Minor updates
- Removed "on:PR" from `ci.yml` - Updated dockerhub readme
1 parent 9914d65 commit 057d7d8

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ on:
1111
- 'v*'
1212
paths-ignore:
1313
- 'docs/**'
14-
pull_request:
15-
branches:
16-
- 'main'
17-
- 'releases/v*'
1814
workflow_dispatch:
1915

2016

docs/README_dockerhub.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<img alt="Simple Secrets Manager" src="https://github.com/bearlike/simple-secrets-manager/raw/main/docs/img/gh_banner.png" />
22
<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>
55
<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>
66
<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>
77
<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
1313
1414

1515
## 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)
1818

1919

2020
## Quick reference (cont.)
@@ -39,9 +39,10 @@ Hashi Corp Vault works well but it was meant for enterprises. Therefore, it was
3939

4040

4141
## 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` |
4546

4647

4748
## Getting started
@@ -50,13 +51,18 @@ Hashi Corp Vault works well but it was meant for enterprises. Therefore, it was
5051

5152
```yaml
5253
version: '3'
54+
volumes:
55+
mongo_data:
56+
5357
services:
5458
mongo:
5559
image: mongo:4
5660
restart: always
5761
environment:
5862
MONGO_INITDB_ROOT_USERNAME: root
5963
MONGO_INITDB_ROOT_PASSWORD: password
64+
volumes:
65+
- mongo_data:/data/db
6066
networks:
6167
- app-tier
6268

0 commit comments

Comments
 (0)