Skip to content

Commit

Permalink
updating workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ngn13 committed Jan 31, 2024
1 parent db55a5a commit cb88832
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
- name: 'Build Inventory Image'
run: |
cd scanner
docker build . --tag ghcr.io/ngn13/massacr_scanner:latest
docker push ghcr.io/ngn13/massacr_scanner:latest
docker build . --tag ghcr.io/ngn13/massacr/scanner:latest
docker push ghcr.io/ngn13/massacr/scanner:latest
cd ../database
docker build . --tag ghcr.io/ngn13/massacr_database:latest
docker push ghcr.io/ngn13/massacr_database:latest
docker build . --tag ghcr.io/ngn13/massacr/database:latest
docker push ghcr.io/ngn13/massacr/database:latest
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ The project contains a scanner and a simple database with a web interface. Easie
version: "3"
services:
scanner:
image: ghcr.io/ngn13/massacr_scanner
image: ghcr.io/ngn13/massacr/scanner
command: --url=http://database:3231 --pwd=securepassword --limit=100
depends_on:
- database

database:
image: ghcr.io/ngn13/massacr_database
image: ghcr.io/ngn13/massacr/database
restart: unless-stopped
environment:
- PASSWORD=securepassword
Expand Down

0 comments on commit cb88832

Please sign in to comment.