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

Fix lint warnings #23

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Changes from all commits
Commits
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
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR "${workdir}"

HEALTHCHECK --interval=10s --start-period=90s CMD netstat -ltn | grep -c ":443"

ENV EXPIRATION_DAYS 30
ENV EXPIRATION_DAYS=30

##
# Drupal
Expand All @@ -23,9 +23,9 @@ FROM base AS drupal

COPY /drupal /

ENV NGINX_FASTCGI_PASS_HOST php
ENV NGINX_FASTCGI_PASS_PORT 9000
ENV NGINX_CLIENT_MAX_BODY_SIZE 128M
ENV NGINX_FASTCGI_PASS_HOST=php
ENV NGINX_FASTCGI_PASS_PORT=9000
ENV NGINX_CLIENT_MAX_BODY_SIZE=128M

##
# Proxy
Expand All @@ -41,7 +41,7 @@ FROM proxy AS nextjs

COPY /nextjs /

ENV NGINX_PROXY_PASS http://app:3000
ENV NGINX_PROXY_PASS=http://app:3000

##
# Storybook
Expand All @@ -50,5 +50,5 @@ FROM proxy AS storybook

COPY /storybook /

ENV NGINX_PROXY_PASS http://app:6006
ENV SERVER_CHANNEL_PROXY_PASS ws://app:6006/storybook-server-channel
ENV NGINX_PROXY_PASS=http://app:6006
ENV SERVER_CHANNEL_PROXY_PASS=ws://app:6006/storybook-server-channel