Skip to content
Snippets Groups Projects
Commit 52dd4b70 authored by Адлан Шамавов's avatar Адлан Шамавов
Browse files

STA-930 | Исправления

parent 70376a8b
No related branches found
No related tags found
1 merge request!11STA-930
......@@ -42,3 +42,5 @@ MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
DATABASE_PORT="5432"
NGINX_PORT="80"
APP_BASE_DIR="./"
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="12345"
\ No newline at end of file
......@@ -23,4 +23,6 @@
/public/assets/
/assets/vendor/
###< symfony/asset-mapper ###
/.idea
\ No newline at end of file
/.idea
.env;
.env.test;
\ No newline at end of file
......@@ -5,8 +5,8 @@ services:
container_name: postgres
image: postgres:16.2-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 12345
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- "${DATABASE_PORT}:${DATABASE_PORT}"
......@@ -33,8 +33,6 @@ services:
APP_BASE_DIR: ${APP_BASE_DIR-.}
volumes:
- ".:/app"
ports:
- "9000:9000"
restart: unless-stopped
networks:
- internal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment