chore: complete rebranding from seanmorley15 to Alex-Wiesner/voyage

Replace all seanmorley15/Voyage repo URLs, ghcr.io/seanmorley15 container
image references, seanmorley.com/sponsor and buymeacoffee links with
the new repo (github.com/Alex-Wiesner/voyage) and new GHCR images
(ghcr.io/alex-wiesner/voyage-*). Attribution to original AdventureLog
author Sean Morley is preserved.
This commit is contained in:
2026-03-06 14:25:16 +00:00
parent c57df72610
commit d32fcb6fed
25 changed files with 52 additions and 78 deletions

View File

@@ -16,7 +16,7 @@ If you're experiencing issues with the Nginx service failing to start in the bac
- The service name should be set to `server` in the `docker-compose.yml` file. For example:
```yaml
server:
image: ghcr.io/seanmorley15/voyage-backend:latest
image: ghcr.io/alex-wiesner/voyage-backend:latest
container_name: voyage-backend
```
@@ -27,14 +27,14 @@ If you're experiencing issues with the Nginx service failing to start in the bac
- Get the default Nginx configuration file from the Voyage repository:
```bash
wget https://raw.githubusercontent.com/seanmorley15/Voyage/refs/heads/main/backend/nginx.conf
wget https://raw.githubusercontent.com/Alex-Wiesner/voyage/refs/heads/main/backend/nginx.conf
```
- Update the `nginx.conf` file to replace all occurrences of `server` with your custom service name.
- Mount the custom Nginx configuration file to the backend container in the `docker-compose.yml` file. For example:
```yaml
server:
image: ghcr.io/seanmorley15/voyage-backend:latest
image: ghcr.io/alex-wiesner/voyage-backend:latest
container_name: voyage-backend
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf