Skip to content

Commit 0c44c88

Browse files
committed
IT WOULD BE A SHAME IF IT DIDNT WORK AFTER ALL THIS
1 parent d521c6d commit 0c44c88

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/build-and-push.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ on:
44
push:
55
branches:
66
- 'coolify'
7+
paths:
8+
- backend/**
9+
- dashboard/**
10+
- shared/**
11+
- Dockerfile
712

813
jobs:
914
docker:

build-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docker build -t dragory/zeppelin .
1+
docker build -t ghcr.io/rubyowo/zeppelin .

docker-compose.standalone.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ services:
3333
# - "${STANDALONE_WEB_PORT:?Missing STANDALONE_WEB_PORT}:443"
3434

3535
migrate:
36-
build:
37-
context: .
36+
image: ghcr.io/rubyowo/zeppelin
3837
depends_on:
3938
mysql:
4039
condition: service_healthy
@@ -52,8 +51,7 @@ services:
5251
command: ["npm", "run", "migrate-prod"]
5352

5453
api:
55-
build:
56-
context: .
54+
image: ghcr.io/rubyowo/zeppelin
5755
depends_on:
5856
migrate:
5957
condition: service_completed_successfully
@@ -65,8 +63,7 @@ services:
6563
command: ["npm", "run", "start-api-prod"]
6664

6765
bot:
68-
build:
69-
context: .
66+
image: ghcr.io/rubyowo/zeppelin
7067
depends_on:
7168
migrate:
7269
condition: service_completed_successfully
@@ -78,8 +75,7 @@ services:
7875
command: ["npm", "run", "start-bot-prod"]
7976

8077
dashboard:
81-
build:
82-
context: .
78+
image: ghcr.io/rubyowo/zeppelin
8379
depends_on:
8480
migrate:
8581
condition: service_completed_successfully

0 commit comments

Comments
 (0)