Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/multi node support #96

Merged
merged 26 commits into from
May 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
832fc18
feat: add schema for registry and routes
Siumauricio May 3, 2024
e9245ce
Merge branch 'canary' into feat/multi-node-support
Siumauricio May 12, 2024
6c79256
feat: add docker registry upload
Siumauricio May 13, 2024
c45017e
feat: add show cluster
Siumauricio May 13, 2024
d19dec8
refactor: set the registry url in image in case we have a registry as…
Siumauricio May 13, 2024
08517d6
feat: add update registry and fix the docker url markup
Siumauricio May 14, 2024
744f800
chore: remove --advertise-ip on swarm script
Siumauricio May 16, 2024
42e9aa1
refactor: remove listen address of swarm initialize
Siumauricio May 17, 2024
976d1f3
feat: add table to show nodes and add dropdown to add manager & workers
Siumauricio May 17, 2024
eda33e0
Merge branch 'canary' into feat/multi-node-support
Siumauricio May 18, 2024
6670678
refactor: improve interface for cluster
Siumauricio May 18, 2024
5806068
refactor: improve UI
Siumauricio May 18, 2024
d52f66a
feat: add experimental swarm settings
Siumauricio May 18, 2024
5a70e61
refactor: remove comments
Siumauricio May 18, 2024
683a62f
refactor: prettify json of each setting
Siumauricio May 18, 2024
bf13353
refactor: add interface tooltip
Siumauricio May 18, 2024
957e506
Merge branch 'canary' into feat/multi-node-support
Siumauricio May 18, 2024
f784a4f
refactor: delete static form self registry
Siumauricio May 18, 2024
7961591
refactor: allow to se a empty registry
Siumauricio May 18, 2024
506fe07
fix: remove text area warnings
Siumauricio May 18, 2024
baecc49
feat: add network swarm json
Siumauricio May 18, 2024
5f42bf6
refactor: update ui
Siumauricio May 20, 2024
3a59edb
revert: go back to swarm init config
Siumauricio May 22, 2024
0f02518
refactor: remove initialization on server, only on setup script
Siumauricio May 22, 2024
8a0ffbe
refactor: prevent to updates download automatically
Siumauricio May 26, 2024
b244aaa
Merge branch 'canary' into feat/multi-node-support
Siumauricio May 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ FROM node:18-slim AS production
# Install dependencies only for production
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable && apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
RUN corepack enable && apt-get update && apt-get install -y curl && apt-get install -y apache2-utils && rm -rf /var/lib/apt/lists/*

WORKDIR /app

Expand All @@ -47,7 +47,6 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-l
# Install docker
RUN curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh && rm get-docker.sh


# Install Nixpacks and tsx
# | VERBOSE=1 VERSION=1.21.0 bash
RUN curl -sSL https://nixpacks.com/install.sh -o install.sh \
Expand Down
Loading
Loading