Skip to content

Commit cd9da69

Browse files
authored
Merge pull request #571 from raghavyuva/feat/develop
Release v0.1.62
2 parents 1d11a2e + e5e637e commit cd9da69

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build_container.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040
4141
- name: Set up Docker Buildx
4242
uses: docker/setup-buildx-action@v3
43+
with:
44+
platforms: linux/amd64,linux/arm64,linux/arm/v7
4345

4446
- name: Cache Docker layers
4547
uses: actions/cache@v4
@@ -72,6 +74,7 @@ jobs:
7274
with:
7375
context: ./api
7476
push: true
77+
platforms: linux/amd64,linux/arm64,linux/arm/v7
7578
tags: ${{ steps.meta-api.outputs.tags }}
7679
labels: ${{ steps.meta-api.outputs.labels }}
7780
build-args: |
@@ -100,6 +103,7 @@ jobs:
100103
with:
101104
context: ./view
102105
push: true
106+
platforms: linux/amd64,linux/arm64,linux/arm/v7
103107
tags: ${{ steps.meta-view.outputs.tags }}
104108
labels: ${{ steps.meta-view.outputs.labels }}
105109
build-args: |

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
image: ghcr.io/${GITHUB_REPOSITORY:-raghavyuva/nixopus}-api:latest
66
container_name: nixopus-api
77
ports:
8-
- "${API_PORT:-8443}:${API_PORT:-8443}"
8+
- "${API_PORT:-8443}:8443"
99
restart: unless-stopped
1010
env_file:
1111
- ${NIXOPUS_HOME:-/etc/nixopus}/source/api/.env
@@ -52,7 +52,7 @@ services:
5252
args:
5353
- NEXT_PUBLIC_PORT=${NEXT_PUBLIC_PORT}
5454
ports:
55-
- "${NEXT_PUBLIC_PORT:-7443}:${NEXT_PUBLIC_PORT:-7443}"
55+
- "${NEXT_PUBLIC_PORT:-7443}:7443"
5656
restart: unless-stopped
5757
env_file:
5858
- ${NIXOPUS_HOME:-/etc/nixopus}/source/view/.env

0 commit comments

Comments
 (0)