Skip to content

Commit

Permalink
update gh actions and docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
rzrbld committed Dec 29, 2021
1 parent 20d3ef4 commit 4a921cb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Adminio-UI Docker Build
on:
push:
branches: [ master ]
tags:
- 'v*'
pull_request:
branches: [ master ]
tags:
- v*

jobs:

Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
push: true
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
labels: ${{ steps.meta.outputs.labels }}
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
MINIO_SECRET_KEY: testtest123
command: server /data0 /data1 /data2 /data3
adminio-ui:
image: rzrbld/adminio-ui:release-1.9
image: rzrbld/adminio-ui:v1.93
environment:
API_BASE_URL: "http://localhost:8080"
ADMINIO_MULTI_BACKEND: "false"
Expand All @@ -18,7 +18,7 @@ services:
ports:
- "80:80"
adminio-api:
image: rzrbld/adminio-api:release-1.8
image: rzrbld/adminio-api:v1.82
environment:
MINIO_ACCESS: test
MINIO_SECRET: testtest123
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minio-ng",
"version": "0.6.3",
"version": "1.9.3",
"scripts": {
"ng": "ng",
"start": "ng serve -o --port 4201",
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

<!-- Copyright -->
<div class="text-right py-3 transparent">
<a href="https://github.com/rzrbld/adminio-ui/issues">create issue or fork at github.com<mdb-icon fab icon="github-alt" size="1x" class="px-1" aria-hidden="true"></mdb-icon></a> | v:1.9 &nbsp;&nbsp;
<a href="https://github.com/rzrbld/adminio-ui/issues">create issue or fork at github.com<mdb-icon fab icon="github-alt" size="1x" class="px-1" aria-hidden="true"></mdb-icon></a> | v:1.93 &nbsp;&nbsp;
</div>
<!-- Copyright -->

Expand Down

0 comments on commit 4a921cb

Please sign in to comment.