Skip to content

Commit 48a8c60

Browse files
committed
chore: bump version
1 parent d84a22f commit 48a8c60

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/monitoring.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
uses: docker/build-push-action@v5
4040
with:
4141
context: .
42+
file: ./Dockerfile.monitoring
4243
platforms: linux/amd64
4344
push: true
4445
tags: ${{ steps.meta.outputs.tags }}
@@ -57,7 +58,7 @@ jobs:
5758
username: ${{ secrets.DOCKERHUB_USERNAME }}
5859
password: ${{ secrets.DOCKERHUB_TOKEN }}
5960

60-
- name: Set tag and version
61+
- name: Set
6162
id: meta
6263
run: |
6364
if [ "${{ github.ref }}" = "refs/heads/main" ]; then
@@ -73,6 +74,7 @@ jobs:
7374
uses: docker/build-push-action@v5
7475
with:
7576
context: .
77+
file: ./Dockerfile.monitoring
7678
platforms: linux/arm64
7779
push: true
7880
tags: ${{ steps.meta.outputs.tags }}
@@ -96,7 +98,6 @@ jobs:
9698
- name: Create and push manifests
9799
run: |
98100
if [ "${{ github.ref }}" = "refs/heads/main" ]; then
99-
VERSION=$(node -p "require('./apps/dokploy/package.json').version")
100101
TAG="latest"
101102
102103
docker buildx imagetools create -t ${IMAGE_NAME}:${TAG} \

apps/dokploy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dokploy",
3-
"version": "v0.17.9",
3+
"version": "v0.18.0",
44
"private": true,
55
"license": "Apache-2.0",
66
"type": "module",

packages/server/src/setup/monitoring-setup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { getRemoteDocker } from "../utils/servers/remote-docker";
1010
export const setupMonitoring = async (serverId: string) => {
1111
const server = await findServerById(serverId);
1212

13-
1413
const containerName = "dokploy-monitoring";
1514
let imageName = "dokploy/monitoring:latest";
1615

0 commit comments

Comments
 (0)