Skip to content

Commit 2b0bfd6

Browse files
committed
fix(docker-image.yml): adjust tag handling for Docker image and update volume path in docker-compose
1 parent f4523db commit 2b0bfd6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/docker-image.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: "GHCR - Build and Push Docker Image"
33
on:
44
push:
55
branches: ["main"]
6+
tags: ["*"]
67
pull_request:
78

89
jobs:
@@ -25,7 +26,7 @@ jobs:
2526
images: |
2627
ghcr.io/allthingslinux/tux
2728
tags: |
28-
type=raw,value=latest,enable={{is_default_branch}}
29+
type=raw,enable={{is_default_branch}}
2930
type=ref,event=pr
3031
3132
- name: Set up Docker Buildx

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
target: production
1313
volumes:
1414
- ./config:/app/config:ro
15-
- ./tux:/app/tux
15+
- ./tux/extensions:/app/tux/extensions
1616
- ./assets:/app/assets
1717
env_file:
1818
- .env

0 commit comments

Comments
 (0)