12 lines
225 B
YAML
12 lines
225 B
YAML
|
|
services:
|
||
|
|
tmdb-proxy:
|
||
|
|
build: .
|
||
|
|
container_name: tmdb-proxy
|
||
|
|
environment:
|
||
|
|
- TMDB_API_KEY=6d58225585fb77af5945a964de41849f
|
||
|
|
- PORT=8001
|
||
|
|
ports:
|
||
|
|
- "0.0.0.0:8001:8001"
|
||
|
|
restart: unless-stopped
|
||
|
|
|