Skip to content

Commit d891aa1

Browse files
authored
Merge pull request #504 from getmaxun/revert-migrate
revert db migrations
2 parents 66eab74 + aaf5fa0 commit d891aa1

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ services:
4848
- "${BACKEND_PORT:-8080}:${BACKEND_PORT:-8080}"
4949
env_file: .env
5050
environment:
51-
DB_HOST: ${DB_HOST}
5251
BACKEND_URL: ${BACKEND_URL}
5352
# to ensure Playwright works in Docker
5453
PLAYWRIGHT_BROWSERS_PATH: /ms-playwright

server/Dockerfile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ COPY public ./public
1111
COPY server ./server
1212
COPY tsconfig.json ./
1313
COPY server/tsconfig.json ./server/
14-
COPY .sequelizerc ./
1514
# COPY server/start.sh ./
1615

1716
# Install dependencies
@@ -42,18 +41,11 @@ RUN apt-get update && apt-get install -y \
4241
libxext6 \
4342
libxi6 \
4443
libxtst6 \
45-
postgresql-client \
46-
netcat-openbsd \
4744
&& rm -rf /var/lib/apt/lists/* \
4845
&& mkdir -p /tmp/.X11-unix && chmod 1777 /tmp/.X11-unix
4946

50-
COPY server/docker-entrypoint.sh /app/
51-
RUN chmod +x /app/docker-entrypoint.sh
52-
5347
# Expose the backend port
5448
EXPOSE ${BACKEND_PORT:-8080}
5549

56-
ENTRYPOINT ["/app/docker-entrypoint.sh"]
57-
5850
# Start the backend using the start script
5951
CMD ["npm", "run", "server"]

0 commit comments

Comments
 (0)