Loading .env +2 −0 Original line number Diff line number Diff line Loading @@ -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 .gitignore +3 −1 Original line number Diff line number Diff line Loading @@ -24,3 +24,5 @@ /assets/vendor/ ###< symfony/asset-mapper ### /.idea .env; .env.test; No newline at end of file docker-compose.yaml +2 −4 Original line number Diff line number Diff line Loading @@ -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}" Loading @@ -33,8 +33,6 @@ services: APP_BASE_DIR: ${APP_BASE_DIR-.} volumes: - ".:/app" ports: - "9000:9000" restart: unless-stopped networks: - internal Loading Loading
.env +2 −0 Original line number Diff line number Diff line Loading @@ -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
.gitignore +3 −1 Original line number Diff line number Diff line Loading @@ -24,3 +24,5 @@ /assets/vendor/ ###< symfony/asset-mapper ### /.idea .env; .env.test; No newline at end of file
docker-compose.yaml +2 −4 Original line number Diff line number Diff line Loading @@ -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}" Loading @@ -33,8 +33,6 @@ services: APP_BASE_DIR: ${APP_BASE_DIR-.} volumes: - ".:/app" ports: - "9000:9000" restart: unless-stopped networks: - internal Loading