Skip to content

Commit faf1f76

Browse files
committed
Fixed Workflow
1 parent b8e90a0 commit faf1f76

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
password: ${{ secrets.GITHUB_TOKEN }}
1919
- name: Build Docker image
2020
run: |
21-
docker build -t ghcr.io/${{ github.repository_owner }}/neyrowz:latest ./website
21+
docker build -t ghcr.io/neyrowz/website:latest ./website
2222
- name: Push Docker image
2323
run: |
24-
docker push ghcr.io/${{ github.repository_owner }}/neyrowz:latest
24+
docker push ghcr.io/neyrowz/website:latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Production
22
```sh
33
docker login ghcr.io
4-
docker pull ghcr.io/NeyrowZ/neyrowz:latest
4+
docker pull ghcr.io/neyrowz/website:latest
55
docker compose up -d
66
```

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
restart: always
3232

3333
website:
34-
image: ghcr.io/NeyrowZ/neyrowz:latest
34+
image: ghcr.io/neyrowz/website:latest
3535
environment:
3636
- VIRTUAL_HOST=${DOMAIN}
3737
- LETSENCRYPT_HOST=${DOMAIN}

0 commit comments

Comments
 (0)