1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
This commit is contained in:
MoonTestUse1
2024-12-26 01:39:17 +06:00
parent 06b778cb6e
commit fdca1ce536
2 changed files with 2 additions and 6 deletions

View File

@@ -20,6 +20,8 @@ services:
environment:
- TELEGRAM_BOT_TOKEN=7677506032:AAHEqNUr1lIUfNVbLwaWIaPeKKShsCyz3eo
- TELEGRAM_CHAT_ID=-1002037023574
ports:
- "8000:8000" # Добавляем это
volumes:
- ./backend:/app
- sqlite_data:/app/instance

View File

@@ -21,12 +21,6 @@ FROM nginx:alpine
# Копируем собранные файлы
COPY --from=build /app/dist /usr/share/nginx/html/
# Удаляем дефолтную страницу nginx
RUN rm -rf /usr/share/nginx/html/50x.html
# Копируем конфигурацию nginx
COPY docker/nginx/conf.d/default.conf /etc/nginx/conf.d/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]