Clean up Voyage branding metadata

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-03-10 22:25:05 +00:00
parent a0bf8df221
commit 84cf9d96ee
7 changed files with 58 additions and 79 deletions

View File

@@ -2,15 +2,15 @@
FROM python:3.13-slim AS builder
# Metadata labels
LABEL maintainer="Sean Morley" \
LABEL maintainer="Voyage contributors" \
version="0.10.0" \
description="AdventureLog — the ultimate self-hosted travel companion." \
org.opencontainers.image.title="AdventureLog" \
org.opencontainers.image.description="AdventureLog helps you plan, track, and share your adventures." \
description="Voyage — the ultimate self-hosted travel companion." \
org.opencontainers.image.title="Voyage" \
org.opencontainers.image.description="Voyage helps you plan, track, and share your adventures." \
org.opencontainers.image.version="0.10.0" \
org.opencontainers.image.authors="Sean Morley" \
org.opencontainers.image.source="https://github.com/seanmorley15/AdventureLog" \
org.opencontainers.image.vendor="Sean Morley" \
org.opencontainers.image.authors="Voyage contributors" \
org.opencontainers.image.source="https://github.com/Alex-Wiesner/voyage" \
org.opencontainers.image.vendor="Voyage contributors" \
org.opencontainers.image.licenses="GPL-3.0"
ENV PYTHONDONTWRITEBYTECODE=1

View File

@@ -36,18 +36,9 @@ EMAIL_BACKEND='console'
# ------------------- #
# For Developers to start a Demo Database
# docker run --name adventurelog-development -e POSTGRES_USER=admin -e POSTGRES_PASSWORD=admin -e POSTGRES_DB=adventurelog -p 5432:5432 -d postgis/postgis:15-3.3
# docker run --name voyage-development -e POSTGRES_USER=admin -e POSTGRES_PASSWORD=admin -e POSTGRES_DB=voyage -p 5432:5432 -d postgis/postgis:15-3.3
# PGHOST='localhost'
# PGDATABASE='adventurelog'
# PGDATABASE='voyage'
# PGUSER='admin'
# PGPASSWORD='admin'
# ------ For Sean's use: ----- #
# Re-sync the development branch with main after doing squash merges
# git fetch origin && git checkout development && git reset --hard origin/main && git push origin development --force
# Pull and merge weblate changes
# git fetch weblate
# git merge --squash weblate/development
# ------------------- #