Skip to content

Commit

Permalink
config: change expose port to 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-rw committed Dec 10, 2023
1 parent 1f994b0 commit cf85bc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ WORKDIR /app
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm run build

EXPOSE 8000
EXPOSE 3000

HEALTHCHECK --interval=10s --timeout=5s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:8000 || exit 1
CMD wget --no-verbose --tries=1 --spider http://localhost:3000 || exit 1

CMD [ "pnpm", "serve" ]
4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ const a11yEmoji = require('@fec/remark-a11y-emoji');
/** @type {import('@docusaurus/types').Config} */
const config = async function createConfig() {
return {
title: 'Homarr Docs',
title: 'Alparr documentation',
tagline: 'A simple yet powerful dashboard for your server.',
url: 'https://homarr.dev',
baseUrl: '/',
favicon: 'img/favicon.png',
// Used for publishing to GitHub Pages
organizationName: 'ajnart',
projectName: 'homarr-docs',
projectName: 'alarr-documentation',
// Has to be set even if not using translations
i18n: {
defaultLocale: 'en',
Expand Down

0 comments on commit cf85bc6

Please sign in to comment.