1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-06-07 23:59:52 +02:00

Update 'Home'

fox 2021-03-08 19:27:29 +03:00
parent f2f24ea1bb
commit 074c21a7a3

37
Home.md

@ -69,6 +69,43 @@ volumes:
Copy and/or git clone any third party plugins into ``plugins.local`` as usual. 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 ### I'm running into 502 errors and/or other connectivity issues
First, check that all containers are running: First, check that all containers are running: