chore: update environment and docker configurations

Update .env.example to include SERVER_IP, add metadata to docs layout, and switch docker-compose image tags to 'latest' for consistency and clarity.
This commit is contained in:
Daniel Luiz Alves
2025-04-25 00:56:04 -03:00
parent b443fcb010
commit f7124ec346
3 changed files with 8 additions and 2 deletions

View File

@@ -9,6 +9,11 @@ const inter = Inter({
subsets: ["latin"],
});
export const metadata = {
title: "🌴 Palmr. | Official Website",
description: "Palmr. is a fast, simple and powerful document sharing platform.",
};
export default function Layout({ children }: { children: ReactNode }) {
return (
<html lang="en" className={inter.className} suppressHydrationWarning>

View File

@@ -9,4 +9,5 @@ MINIO_ROOT_PASSWORD="palmr123"
MINIO_REGION="sa-east-1"
MINIO_BUCKET_NAME="files"
PORT=3333
SERVER_IP="localhost"

View File

@@ -1,6 +1,6 @@
services:
palmr-api:
image: kyantech/palmr-api:v2.0.0-beta # Make sure to use the correct version (latest) of the image
image: kyantech/palmr-api:latest # Make sure to use the correct version (latest) of the image
container_name: palmr-api
depends_on:
postgres:
@@ -30,7 +30,7 @@ services:
start_period: 30s
palmr-app:
image: kyantech/palmr-app:v2.0.0-beta # Make sure to use the correct version (latest) of the image
image: kyantech/palmr-app:latest # Make sure to use the correct version (latest) of the image
container_name: palmr-web
depends_on:
palmr-api: