summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-21 22:22:50 +0000
committerAndrew Dolgov <[email protected]>2023-10-21 22:22:50 +0000
commit837873d5fbb15451cafaff82c8d183400ac53b5c (patch)
tree265cc46dfb59476dcf74a73a8f238fbff966d379
parent3085af66ed45e9b0d45b84b7077370596d591b18 (diff)
Update InstallationNotes
-rw-r--r--InstallationNotes.md46
1 files changed, 0 insertions, 46 deletions
diff --git a/InstallationNotes.md b/InstallationNotes.md
index fff514c..a279ca7 100644
--- a/InstallationNotes.md
+++ b/InstallationNotes.md
@@ -250,52 +250,6 @@ volumes:
Copy and/or git clone any third party plugins into ``plugins.local`` as usual.
-### How do I use dynamic image for development?
-
-The idea is to map source code someplace more accessible than a docker volume. Example `docker-compose.override.yml`:
-
-```yml
-
-version: '3'
-
-services:
- app:
- build:
- context:
- ./app
- volumes:
- - ./html:/var/www/html
- env_file:
- - .env
-
- updater:
- build:
- context:
- ./app
- volumes:
- - ./html:/var/www/html
- env_file:
- - .env
-
- web-nginx:
- build: ./web-nginx
- volumes:
- - ./html:/var/www/html
- env_file:
- - .env
-```
-
-Then open `html/tt-rss` in your source code editor of choice. You can enable PHP debugging using `.env`:
-
-```ini
-TTRSS_XDEBUG_ENABLED=yes
-
-#TTRSS_XDEBUG_HOST=
-# defaults to host IP
-
-#TTRSS_XDEBUG_PORT=9000
-```
-
### I'm running into 502 errors and/or other connectivity issues
First, check that all containers are running: