Skip to content

Commit

Permalink
fix: webのpublish対象忘れ
Browse files Browse the repository at this point in the history
  • Loading branch information
book000 committed Aug 15, 2022
1 parent 3c6266a commit b6ccae3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
directory: [watcher, recognizer, cert]
directory: [watcher, recognizer, web, cert]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
directory: [watcher, recognizer, cert]
directory: [watcher, recognizer, web, cert]

steps:
- name: Check out the repo
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"

services:
chatwatcher:
watcher:
build: ./watcher
volumes:
- type: bind
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: "3.8"

services:
chatwatcher:
image: ghcr.io/jaoafa/ChatWatcher-watcher:latest
watcher:
image: ghcr.io/jaoafa/chatwatcher-watcher:latest
volumes:
- type: bind
source: ./config.json
Expand All @@ -18,7 +18,7 @@ services:
restart: always

web:
image: ghcr.io/jaoafa/ChatWatcher-web:latest
image: ghcr.io/jaoafa/chatwatcher-web:latest
environment:
NGINX_SERVER_NAME: web
NGINX_HSTS_MAX_AGE: 31536000
Expand All @@ -32,7 +32,7 @@ services:
restart: always

cert:
image: ghcr.io/jaoafa/ChatWatcher-cert:latest
image: ghcr.io/jaoafa/chatwatcher-cert:latest
build:
context: ./web
dockerfile: ./cert.Dockerfile
Expand Down

0 comments on commit b6ccae3

Please sign in to comment.