Skip to content

Commit

Permalink
Merge branch 'master' of github.com:CroboticSolutions/docker_files
Browse files Browse the repository at this point in the history
  • Loading branch information
fzoric8 committed Jul 20, 2024
2 parents 385a706 + e2d3d9b commit 5c9971d
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/clockbox:latest
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# docker_files

Repository for useful virtualization (docker) stuff.
Aimed to make development:
- easy
- simple
- reproducible

## Instructions

Instructions on how to use following repository can be found [here](https://github.com/larics/docker_files/wiki).

0 comments on commit 5c9971d

Please sign in to comment.