diff options
author | cglatot <[email protected]> | 2023-08-16 14:18:24 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-08-16 14:18:24 +0100 |
commit | 5f765c0c9677fad9229482d9600640bcd636311d (patch) | |
tree | 3d8a67c9f3f29b6e293ff3d42b1bdc19c824a1d0 | |
parent | 75b27200597067d816de2edf493fb672df5992f6 (diff) | |
parent | 1ca23965f3cdb2136e3d7f49b338fdca0925ff7b (diff) | |
download | pasta-5f765c0c9677fad9229482d9600640bcd636311d.tar.gz pasta-5f765c0c9677fad9229482d9600640bcd636311d.zip |
Merge pull request #62 from jgramling17/docker-readme
updated readme to include docker compose example
-rw-r--r-- | README.md | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -30,3 +30,22 @@ When I first began developing this for myself, I was calling it *Audio Track Aut PASTA was born out of a desire, one that I had seen others have as well, but that I had only seen one other solution for. However, it was in command line and I wanted something a bit more appealing to look at, and something I could use from anywhere. Initially I was only building this for myself but I thought that others might find use for it as well, so here we are! PASTA runs entirely client-side. This means that you are not passing anything to someones server to do this (other than the Plex Server), and it also means I don't have to worry about standing up a server to do that side of things either :). PASTA runs off of Github Pages. Feel free to have a look, download it yourself and use it locally, or make suggestions. I'm by no means finished with PASTA - I still have plenty of ideas for how I can add more to it, as well as fix any bugs that crop up. + +## Docker + +Here is an example compose to help you get started creating a container. + + + +```yaml +--- +version: "3" + +services: + pasta: + image: cglatot/pasta + container_name: pasta + ports: + - 8087:80 + restart: unless-stopped +```
\ No newline at end of file |