8000 fix: self-hosting doc, migrate container start command by abelanger5 · Pull Request #1440 · hatchet-dev/hatchet · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: self-hosting doc, migrate container start command #1440

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

Merged
merged 1 commit into from
Mar 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


8000 Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build/package/servers.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ FROM alpine AS deployment

# can be set to "api", "engine", "admin" or "lite"
ARG SERVER_TARGET=engine
ENV SERVER_TARGET=${SERVER_TARGET}

WORKDIR /hatchet

Expand All @@ -79,4 +80,5 @@ COPY /hack/db/atlas-apply.sh ./atlas-apply.sh
RUN chmod +x ./atlas-apply.sh

EXPOSE 8080
CMD /hatchet/hatchet-${SERVER_TARGET}

CMD ["/bin/sh", "-c", "/hatchet/hatchet-${SERVER_TARGET}"]
1 change: 1 addition & 0 deletions frontend/docs/pages/self-hosting/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ services:
retries: 5
migration:
image: ghcr.io/hatchet-dev/hatchet/hatchet-migrate:latest
command: /hatchet/hatchet-migrate
environment:
DATABASE_URL: "postgres://hatchet:hatchet@postgres:5432/hatchet"
depends_on:
Expand Down
2 changes: 0 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ module github.com/hatchet-dev/hatchet

go 1.23.0

toolchain go1.24.1

require (
github.com/Masterminds/semver/v3 v3.3.1
github.com/creasty/defaults v1.8.0
Expand Down
Loading
0