From 074c21a7a3d8057b11871c48cb8eff78cfd13913 Mon Sep 17 00:00:00 2001 From: fox Date: Mon, 8 Mar 2021 19:27:29 +0300 Subject: [PATCH] Update 'Home' --- Home.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/Home.md b/Home.md index 8532fda..01b9107 100644 --- a/Home.md +++ b/Home.md @@ -69,6 +69,43 @@ 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. + ### I'm running into 502 errors and/or other connectivity issues First, check that all containers are running: