5 Commits

Author SHA1 Message Date
danielvici123
0a022faf96 Update docker-compose.yml 2026-06-09 19:31:01 +00:00
danielvici123
9ced8d11c6 docker: Add OCI source label to Dockerfile
All checks were successful
Release Docker Image / Push Docker image to Registry (push) Successful in 1m40s
Build and Release / Build All Platforms (push) Successful in 1m57s
2026-06-09 21:23:12 +02:00
danielvici123
c2456a7ac0 Update .gitea/workflows/build-image.yml
All checks were successful
Release Docker Image / Push Docker image to Registry (push) Successful in 1m50s
Build and Release / Build All Platforms (push) Successful in 2m2s
2026-06-09 19:16:41 +00:00
danielvici123
c68be2a9f5 ci: Remove Docker build caching 2026-06-09 21:11:26 +02:00
danielvici123
13afb2292e chore: Bump version to 0.6.0
Some checks failed
Build and Release / Build All Platforms (push) Successful in 2m1s
Release Docker Image / Push Docker image to Registry (push) Failing after 8s
2026-06-09 20:17:56 +02:00
4 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ jobs:
with:
registry: git.danielvici.com
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Extract Docker tags
id: meta
@@ -49,6 +49,4 @@ jobs:
context: .
push: true
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ${{ steps.meta.outputs.tags }}

View File

@@ -1,6 +1,6 @@
[package]
name = "dhl"
version = "0.5.0"
version = "0.6.0"
edition = "2024"
[dependencies]

View File

@@ -24,6 +24,8 @@ RUN touch src/main.rs && cargo build --release
# Final stage
FROM alpine:latest
LABEL org.opencontainers.image.source="https://git.danielvici.com/danielvici123/dhl"
# Set environment variable to signal the app it's running in Docker
ENV DOCKER_CONTAINER=true

View File

@@ -1,7 +1,7 @@
services:
dhl:
build: .
image: dhl:latest
image: docker pull git.danielvici.com/danielvici123/dhl:latest
container_name: dhl
ports:
- "3000:3000"