Skip to content

Commit

Permalink
Bump version from 0.2.0 to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonnnj committed Feb 11, 2025
1 parent 99bb46d commit 027da1d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ appropriate for Docker containers and the major languages that we use.
To run the `cisagov/example` image via Docker:

```console
docker run cisagov/example:0.2.0
docker run cisagov/example:0.3.0
```

### Running with Docker Compose ###
Expand All @@ -39,7 +39,7 @@ docker run cisagov/example:0.2.0
example:
environment:
- ECHO_MESSAGE="Hello from docker compose"
image: cisagov/example:0.2.0
image: cisagov/example:0.3.0
ports:
- protocol: tcp
published: "8080"
Expand Down Expand Up @@ -84,7 +84,7 @@ environment variables. See the
example:
environment:
- ECHO_MESSAGE="Hello from docker compose"
image: cisagov/example:0.2.0
image: cisagov/example:0.3.0
ports:
- protocol: tcp
published: "8080"
Expand Down Expand Up @@ -125,7 +125,7 @@ environment variables. See the
1. Pull the new image:

```console
docker pull cisagov/example:0.2.0
docker pull cisagov/example:0.3.0
```

1. Recreate and run the container by following the [previous instructions](#running-with-docker).
Expand Down Expand Up @@ -164,12 +164,12 @@ and then update dependencies as you would above.
The images of this container are tagged with [semantic
versions](https://semver.org) of the underlying example project that they
containerize. It is recommended that most users use a version tag (e.g.
`:0.2.0`).
`:0.3.0`).

| Image:tag | Description |
|-----------|-------------|
|`cisagov/example:0.2.0`| An exact release version. |
|`cisagov/example:0.2`| The most recent release matching the major and minor version numbers. |
|`cisagov/example:0.3.0`| An exact release version. |
|`cisagov/example:0.3`| The most recent release matching the major and minor version numbers. |
|`cisagov/example:0`| The most recent release matching the major version number. |
|`cisagov/example:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
|`cisagov/example:nightly` | A nightly build of the `develop` branch of this repository. |
Expand Down Expand Up @@ -225,7 +225,7 @@ Build the image locally using this git repository as the [build context](https:/

```console
docker build \
--tag cisagov/example:0.2.0 \
--tag cisagov/example:0.3.0 \
https://github.com/cisagov/example.git#develop
```

Expand Down Expand Up @@ -256,7 +256,7 @@ Docker:
--file Dockerfile-x \
--platform linux/amd64 \
--output type=docker \
--tag cisagov/example:0.2.0 .
--tag cisagov/example:0.3.0 .
```

## New repositories from a skeleton ##
Expand Down
2 changes: 1 addition & 1 deletion src/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.3.0

0 comments on commit 027da1d

Please sign in to comment.