NotYetAnotherRandomAnonymousUser
Results
3
comments of
NotYetAnotherRandomAnonymousUser
You may want to check logs of your backend container by entering the directory of your compose file and running ``` docker compose logs piped ```
You can expose API server by adding `ports` to your compose file, then poke it with `curl -v http://127.0.0.1:8081/trending?region=US`: ``` piped: image: 1337kavin/piped:latest ports: - "8081:8080" ``` You may need...