Skip to content

Commit

Permalink
Lowercase image name and app name change
Browse files Browse the repository at this point in the history
  • Loading branch information
Pelayori committed Feb 25, 2024
1 parent 1a342c0 commit 751e78a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/app:latest
tags: ghcr.io/${{ github.repository_owner.toLowerCase() }}/wiq_es04b:latest

deploy:
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ services:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-root}
MYSQL_DATABASE: ${MYSQL_DATABASE:-app}
MYSQL_USER: ${MYSQL_USER:-app}
MYSQL_PASSWORD: ${MYSQL_PASSWORD:-app}
MYSQL_DATABASE: ${MYSQL_DATABASE:-wiq_es04b}
MYSQL_USER: ${MYSQL_USER:-wiq_es04b}
MYSQL_PASSWORD: ${MYSQL_PASSWORD:-wiq_es04b}
volumes:
- db_data:/var/lib/mysql
restart: always

app:
wiq_es04b:
build:
context: .
dockerfile: Dockerfile
Expand Down

0 comments on commit 751e78a

Please sign in to comment.