Skip to content

Commit 198e280

Browse files
committed
chore: Docker files have been moved folder by folder, are no longer in the root directory. Paths have been updated
1 parent 73eaac5 commit 198e280

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.github/workflows/docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
type=sha
6262
- uses: docker/build-push-action@v5
6363
with:
64-
file: Dockerfile-server
65-
context: .
64+
file: ./server/Dockerfile
65+
context: ./server
6666
push: true
6767
tags: ${{ steps.meta.outputs.tags }}
6868
labels: ${{ steps.meta.outputs.labels }}
@@ -127,8 +127,8 @@ jobs:
127127
type=sha
128128
- uses: docker/build-push-action@v5
129129
with:
130-
file: Dockerfile-web
131-
context: .
130+
file: ./web/Dockerfile
131+
context: ./web
132132
push: true
133133
tags: ${{ steps.meta.outputs.tags }}
134134
labels: ${{ steps.meta.outputs.labels }}
@@ -160,8 +160,8 @@ jobs:
160160
type=sha
161161
- uses: docker/build-push-action@v5
162162
with:
163-
file: Dockerfile-parser
164-
context: .
163+
file: ./parser/Dockerfile
164+
context: ./parser
165165
push: true
166166
tags: ${{ steps.meta.outputs.tags }}
167167
labels: ${{ steps.meta.outputs.labels }}

docker-compose.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ services:
1717

1818
server:
1919
build:
20-
context: ./
21-
dockerfile: Dockerfile-server
20+
context: .
21+
dockerfile: server/Dockerfile
2222
restart: unless-stopped
2323
ports:
2424
- '3000:3000'
@@ -31,6 +31,7 @@ services:
3131
chart:
3232
build:
3333
context: ./chart
34+
dockerfile: Dockerfile
3435
restart: unless-stopped
3536
ports:
3637
- '3030:3030'
@@ -43,8 +44,8 @@ services:
4344

4445
parser:
4546
build:
46-
context: ./
47-
dockerfile: Dockerfile-parser
47+
context: .
48+
dockerfile: parser/Dockerfile
4849
restart: unless-stopped
4950
volumes:
5051
- './config.hjson:/config.hjson'
@@ -54,8 +55,8 @@ services:
5455

5556
web:
5657
build:
57-
context: ./
58-
dockerfile: Dockerfile-web
58+
context: .
59+
dockerfile: web/Dockerfile
5960
restart: unless-stopped
6061
ports:
6162
- '3050:3050'
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)