refactor: split into two stacks - searchFilms/ (NL) and app/ (RU)
This commit is contained in:
parent
6ef3a10d0d
commit
51348a9d23
36 changed files with 326 additions and 1271 deletions
31
searchFilms/docker-compose.yml
Normal file
31
searchFilms/docker-compose.yml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
services:
|
||||
tmdb-proxy:
|
||||
build: ./tmdb-proxy
|
||||
container_name: search-tmdb-proxy
|
||||
environment:
|
||||
- TMDB_API_KEY=$TMDB_API_KEY
|
||||
- PORT=8001
|
||||
ports:
|
||||
- "0.0.0.0:8001:8001"
|
||||
restart: unless-stopped
|
||||
dns:
|
||||
- 8.8.8.8
|
||||
- 8.8.4.4
|
||||
networks:
|
||||
- search-stack
|
||||
|
||||
torapi-search:
|
||||
image: lifailon/torapi:latest
|
||||
container_name: search-torapi
|
||||
environment:
|
||||
- USERNAME=
|
||||
- PASSWORD=
|
||||
ports:
|
||||
- "0.0.0.0:8443:8443"
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- search-stack
|
||||
|
||||
networks:
|
||||
search-stack:
|
||||
driver: bridge
|
||||
Loading…
Add table
Add a link
Reference in a new issue