diff --git a/README.md b/README.md index 0caa935..36d21fa 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Note: ARM-based CPUs are not currently supported, see issues [#5] and [#13]. Ensure you have [Docker](https://www.docker.com) installed and running. You can then pull down and run the container as shown below. ```console -docker run -t -p 6878:6878 martinbjeldbak/acestream-http-proxy +docker run -t -p 6878:6878 ghcr.io/martinbjeldbak/acestream-http-proxy ``` You are then able to access AceStreams by pointing your favorite media player @@ -42,6 +42,20 @@ where `dd1e67078381739d14beca697356ab76d49d1a2d` is the ID of the AceStream chan This image can also be deployed to a server, where it can proxy AceStream content over HTTP. To able to reach it from remote you need to set ALLOW_REMOTE_ACCESS=yes as environment variable +You can also run it using docker-compose with + +```yaml +--- +services: + acestream-http-proxy: + image: ghcr.io/martinbjeldbak/acestream-http-proxy + container_name: acestream-http-proxy + ports: + - 6878:6878 +``` + +for an example, see the [docker-compose.yml](./docker-compose.yml) file in this repository. + ## Contributing First of all, thanks! diff --git a/docker-compose.yml b/docker-compose.yml index 83a6432..debc2ff 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ -version: '3.9' +--- services: app: build: . ports: - '6878:6878' environment: - - ALLOW_REMOTE_ACCESS=no + - ALLOW_REMOTE_ACCESS=no # change to "yes" to allow internet access