Browse Source
Feature/set up Tini to avoid zombie processes (#3195)
* Set up Tini to avoid zombie processes
* Update changelog
pull/3212/head
Bastien Jeannelle
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
22 additions and
1 deletions
-
CHANGELOG.md
-
Dockerfile
-
docker/entrypoint.sh
|
|
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Added the date range support in the activities table on the portfolio activities page (experimental) |
|
|
|
- Extended the date range support by specific years (`2023`, `2022`, `2021`, etc.) in the assistant (experimental) |
|
|
|
- Set up `Tini` to avoid zombie processes and perform signal forwarding in docker image |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
@ -56,7 +56,15 @@ RUN apt update && apt install -y \ |
|
|
|
openssl \ |
|
|
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
|
|
|
|
# Add tini, which is an init process that handles signaling within the container |
|
|
|
# and with the host. See https://github.com/krallin/tini |
|
|
|
ENV TINI_VERSION v0.19.0 |
|
|
|
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini |
|
|
|
RUN chmod +x /tini |
|
|
|
ENTRYPOINT ["/tini", "--"] |
|
|
|
|
|
|
|
COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps |
|
|
|
COPY ./docker/entrypoint.sh /ghostfolio/entrypoint.sh |
|
|
|
WORKDIR /ghostfolio/apps/api |
|
|
|
EXPOSE ${PORT:-3333} |
|
|
|
CMD [ "yarn", "start:production" ] |
|
|
|
CMD [ "/ghostfolio/entrypoint.sh" ] |
|
|
|
|
|
@ -0,0 +1,12 @@ |
|
|
|
#!/bin/sh |
|
|
|
|
|
|
|
set -ex |
|
|
|
|
|
|
|
echo "Running database migrations" |
|
|
|
npx prisma migrate deploy |
|
|
|
|
|
|
|
echo "Seeding the database" |
|
|
|
npx prisma db seed |
|
|
|
|
|
|
|
echo "Starting the server" |
|
|
|
node main |