mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose
synced 2025-07-08 01:39:54 +02:00
Update 'Home'
parent
f2f24ea1bb
commit
074c21a7a3
1 changed files with 37 additions and 0 deletions
37
Home.md
37
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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue