Skip to content

Commit 9135f88

Browse files
committed
ci: update compose file for docker image name
1 parent 8748855 commit 9135f88

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ jobs:
186186
id: meta
187187
uses: docker/metadata-action@v5
188188
with:
189-
images: ghcr.io/${{ github.repository_owner }}/emojify
189+
images: ghcr.io/${{ github.repository_owner }}/emojify-go
190190
tags: |
191191
type=ref,event=branch
192192
type=ref,event=pr
@@ -195,7 +195,7 @@ jobs:
195195
type=raw,value=latest,enable={{is_default_branch}}
196196
197197
- name: Build and push Docker image
198-
uses: docker/build-push-action@v5
198+
uses: docker/build-push-action@v6
199199
with:
200200
context: .
201201
platforms: linux/amd64,linux/arm64

docker-compose.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
services:
2-
emojify:
2+
emojify-go:
33
build:
44
context: .
55
dockerfile: Dockerfile
@@ -10,24 +10,17 @@ services:
1010
- type=gha
1111
cache_to:
1212
- type=gha,mode=max
13-
image: ghcr.io/damienbutt/emojify:latest
14-
container_name: emojify
15-
restart: unless-stopped
16-
# Uncomment and modify as needed for your use case
17-
# volumes:
18-
# - ./input:/input:ro
19-
# - ./output:/output
20-
# environment:
21-
# - EMOJIFY_CONFIG=production
22-
# command: ["--help"]
13+
image: ghcr.io/damienbutt/emojify-go:latest
14+
container_name: emojify-go
15+
restart: never
2316

2417
# Development service for local testing
2518
emojify-dev:
2619
build:
2720
context: .
2821
dockerfile: Dockerfile
2922
target: builder
30-
image: emojify:dev
23+
image: emojify-go:dev
3124
container_name: emojify-dev
3225
volumes:
3326
- .:/app

0 commit comments

Comments
 (0)