Skip to content

Commit

Permalink
Merge pull request #23 from kadrim/16-docker-compose-config
Browse files Browse the repository at this point in the history
add documentation for docker-compose
  • Loading branch information
kadrim authored Sep 19, 2022
2 parents ef91df5 + f92102b commit c56780a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,22 @@ docker buildx inspect --bootstrap
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t kadrim/proxy4plex:latest --push .
```

### Docker-Compose / Portainer

If you prefer, you can run this via docker-compose or Portainer by creating a file called `docker-compose.yaml` and adding this content:

```yaml
version: "3"
services:
proxy4plex:
image: kadrim/proxy4plex
container_name: proxy4plex
ports:
- 80:80
- 3000:3000
restart: unless-stopped
```
## TODOs
- detect OS and allow User to install the proxy as a boot-service
Expand Down

0 comments on commit c56780a

Please sign in to comment.