Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
version: 2.1

orbs:
codacy: codacy/base@13.0.0

workflows:
test-and-publish:
jobs:
- codacy/checkout_and_version:
write_sbt_version: false
- codacy/shell:
name: build_docker
requires:
- codacy/checkout_and_version
cmd: |
docker build --no-cache -t codacy/nfs-server-docker:$(cat .version) .
filters:
branches:
ignore:
- master
- codacy/shell:
name: build_and_publish_docker
context: CodacyDocker
requires:
- codacy/checkout_and_version
cmd: |
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker tag codacy/nfs-server-docker:$(cat .version) codacy/nfs-server-docker:latest
docker push codacy/nfs-server-docker:$(cat .version)
docker push codacy/nfs-server-docker:latest
filters:
branches:
only:
- master
- codacy/tag_version:
context: CodacyAWS
force: true
requires:
- build_and_publish_docker
filters:
branches:
only:
- master
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Each line is a file pattern followed by one or more owners.

# Default owners for everything in the repo
* @codacy/tarot
74 changes: 0 additions & 74 deletions .github/code-of-conduct.md

This file was deleted.

119 changes: 0 additions & 119 deletions .github/workflows/build-and-push-v2.yaml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/hadolint.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# obeone/nfs-server (forked from erichough/nfs-server)
# Docker NFS server (forked from obeone/nfs-server)

[![Build and publish](https://github.com/obeone/docker-nfs-server/actions/workflows/build-and-push-v2.yaml/badge.svg?branch=main&event=push)](https://github.com/obeone/docker-nfs-server/actions/workflows/build-and-push-v2.yaml)

Expand Down