README.md

This commit is contained in:
charlesgauthereau
2025-12-24 09:26:49 +01:00
parent d9997ff5e9
commit 7f7f8e642f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -9,7 +9,7 @@
Free, open-source, and self-hosted solution for automated backup and restoration of your database instances. Free, open-source, and self-hosted solution for automated backup and restoration of your database instances.
</p> </p>
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) [![License: Apache](https://img.shields.io/badge/License-apache-yellow.svg)](LICENSE)
[![Docker Pulls](https://img.shields.io/docker/pulls/solucetechnologies/portabase?color=brightgreen)](https://hub.docker.com/r/solucetechnologies/portabase) [![Docker Pulls](https://img.shields.io/docker/pulls/solucetechnologies/portabase?color=brightgreen)](https://hub.docker.com/r/solucetechnologies/portabase)
[![Platform](https://img.shields.io/badge/platform-linux%20%7C%20macos%20%7C%20windows-lightgrey)](https://github.com/RostislavDugin/postgresus) [![Platform](https://img.shields.io/badge/platform-linux%20%7C%20macos%20%7C%20windows-lightgrey)](https://github.com/RostislavDugin/postgresus)
@@ -86,7 +86,7 @@ services:
ports: ports:
- '8887:80' - '8887:80'
environment: environment:
- TIME_ZONE="Europe/Paris" - TZ="Europe/Paris"
volumes: volumes:
- portabase-private:/app/private - portabase-private:/app/private
depends_on: depends_on:
+1 -1
View File
@@ -13,7 +13,7 @@ export const EmailLayout = ({ children, preview }: PropsWithChildren<{ preview?:
{preview ? <Preview>{preview}</Preview> : <Preview>Please check your mails</Preview>} {preview ? <Preview>{preview}</Preview> : <Preview>Please check your mails</Preview>}
<Body className="bg-gray-100 py-4" style={{ fontFamily: "Arial, sans-serif" }}> <Body className="bg-gray-100 py-4" style={{ fontFamily: "Arial, sans-serif" }}>
<Container className="bg-white border border-gray-200 p-12"> <Container className="bg-white border border-gray-200 p-12">
<Img src={`${baseUrl}/images/logo-black.png`} width="200" height="auto" alt="Logo" /> <Img src={`${baseUrl}/images/logo-dark.png`} width="200" height="auto" alt="Logo" />
<Section>{children}</Section> <Section>{children}</Section>
</Container> </Container>
</Body> </Body>