Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #14 from xvxd4sh/hotfix/cisagov-transfer
Browse files Browse the repository at this point in the history
transfer processing
  • Loading branch information
xvxd4sh authored Sep 15, 2022
2 parents ce925e9 + d0c300f commit 819a230
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:
env:
BUILDX_CACHE_DIR: ~/.cache/buildx
CURL_CACHE_DIR: ~/.cache/curl
IMAGE_NAME: xvxd4sh/coredns
IMAGE_NAME: cisagov/coredns
PIP_CACHE_DIR: ~/.cache/pip
PLATFORMS: "linux/amd64,linux/arm64,linux/s390x"
PRE_COMMIT_CACHE_DIR: ~/.cache/pre-commit
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ all of which should be in this repository.

If you want to report a bug or request a new feature, the most direct
method is to [create an
issue](https://github.com/xvxd4sh/coredns-docker/issues) in this
issue](https://github.com/cisagov/coredns-docker/issues) in this
repository. We recommend that you first search through existing
issues (both open and closed) to check if your particular issue has
already been reported. If it has then you might want to add a comment
Expand All @@ -25,7 +25,7 @@ one.
## Pull requests ##

If you choose to [submit a pull
request](https://github.com/xvxd4sh/coredns-docker/pulls)
request](https://github.com/cisagov/coredns-docker/pulls)
you willnotice that our continuous integration (CI) system runs a fairly
extensive set of linters and syntax checkers. Your pull request may
fail these checks, and that's OK. If you want you can stop there and
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Coredns-docker 📔🐳 #

[![GitHub Build Status](https://github.com/xvxd4sh/coredns-docker/workflows/build/badge.svg)](https://github.com/xvxd4sh/coredns-docker/actions/workflows/build.yml)
[![CodeQL](https://github.com/xvxd4sh/coredns-docker/workflows/CodeQL/badge.svg)](https://github.com/xvxd4sh/coredns-docker/actions/workflows/codeql-analysis.yml)
[![Known Vulnerabilities](https://snyk.io/test/github/xvxd4sh/coredns-docker/badge.svg)](https://snyk.io/test/github/xvxd4sh/coredns-docker)
[![GitHub Build Status](https://github.com/cisagov/coredns-docker/workflows/build/badge.svg)](https://github.com/cisagov/coredns-docker/actions/workflows/build.yml)
[![CodeQL](https://github.com/cisagov/coredns-docker/workflows/CodeQL/badge.svg)](https://github.com/cisagov/coredns-docker/actions/workflows/codeql-analysis.yml)
[![Known Vulnerabilities](https://snyk.io/test/github/cisagov/coredns-docker/badge.svg)](https://snyk.io/test/github/cisagov/coredns-docker)

## Docker Image ##

[![Docker Pulls](https://img.shields.io/docker/pulls/xvxd4sh/coredns)](https://hub.docker.com/r/xvxd4sh/coredns)
[![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/xvxd4sh/coredns)](https://hub.docker.com/r/xvxd4sh/coredns)
[![Platforms](https://img.shields.io/badge/platforms-amd64%20%7C%20arm%2Fv6%20%7C%20arm%2Fv7%20%7C%20arm64%20%7C%20ppc64le%20%7C%20s390x-blue)](https://hub.docker.com/r/xvxd4sh/coredns-docker/tags)
[![Docker Pulls](https://img.shields.io/docker/pulls/cisagov/coredns)](https://hub.docker.com/r/cisagov/coredns)
[![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/cisagov/coredns)](https://hub.docker.com/r/cisagov/coredns)
[![Platforms](https://img.shields.io/badge/platforms-amd64%20%7C%20arm%2Fv6%20%7C%20arm%2Fv7%20%7C%20arm64%20%7C%20ppc64le%20%7C%20s390x-blue)](https://hub.docker.com/r/cisagov/coredns-docker/tags)

This is a docker project that is used to spin up a CoreDNS server.

Expand Down Expand Up @@ -38,10 +38,10 @@ A list of [plugin(s)](https://coredns.io/plugins/) used by the CoreDNS

### Running with Docker ###

To run the `xvxd4sh/coredns` image via Docker:
To run the `cisagov/coredns` image via Docker:

```console
docker run xvxd4sh/coredns:latest
docker run cisagov/coredns:latest
```

### Running with Docker Compose ###
Expand All @@ -60,7 +60,7 @@ docker run xvxd4sh/coredns:latest
# e.g., --build-arg VERSION=0.0.1
context: .
dockerfile: Dockerfile
image: xvxd4sh/coredns
image: cisagov/coredns
container_name: coredns
init: true
restart: on-failure
Expand Down Expand Up @@ -100,7 +100,7 @@ environment variables. See the
services:
example:
image: xvxd4sh/coredns:latest
image: cisagov/coredns:latest
volumes:
- type: bind
source: <your_log_dir>
Expand Down Expand Up @@ -143,7 +143,7 @@ environment variables. See the
1. Pull the new image:

```console
docker pull xvxd4sh/coredns:latest
docker pull cisagov/coredns:latest
```

1. Recreate and run the container by following the [previous instructions](#running-with-docker).
Expand Down Expand Up @@ -212,7 +212,7 @@ Docker:
or the command line:

```console
git clone https://github.com/xvxd4sh/coredns-docker.git
git clone https://github.com/cisagov/coredns-docker.git
cd coredns-docker
```

Expand All @@ -230,7 +230,7 @@ Docker:
--platform linux/amd64 \
--build-arg VERSION=0.0.1 \
--output type=docker \
--tag xvxd4sh/coredns:latest .
--tag cisagov/coredns:latest .
``` -->

## Contributing ##
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
# e.g., --build-arg VERSION=0.0.1
context: .
dockerfile: Dockerfile
image: xvxd4sh/coredns
image: cisagov/coredns
container_name: coredns
init: true
restart: on-failure
Expand Down

0 comments on commit 819a230

Please sign in to comment.