An open API service indexing awesome lists of open source software.

https://github.com/engels74/obzorarr-docker

Docker image repository for Obzorarr
https://github.com/engels74/obzorarr-docker

docker-image

Last synced: 5 months ago
JSON representation

Docker image repository for Obzorarr

Awesome Lists containing this project

README

          

# Obzorarr Docker Image


obzorarr


License (Image)
License (App)
GitHub Stars

## 📖 Documentation

This repository contains Docker and Docker Compose configuration for running obzorarr in containerized environments.

For more information about the obzorarr application, visit [github.com/engels74/obzorarr](https://github.com/engels74/obzorarr).

## 🐋 Docker Image

### Docker Compose

To get started with obzorarr using Docker, follow these steps:

1. **Create a Docker Compose file** (e.g., `docker-compose.yml`):
```yaml
services:
obzorarr:
container_name: obzorarr
image: ghcr.io/engels74/obzorarr-docker:latest
ports:
- 3000:3000
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- ./config:/config
restart: unless-stopped
```

2. **Run the Docker container:**
```sh
docker compose up -d
```

3. **Access obzorarr** at `http://localhost:3000`

## 📜 License

- **Docker Image**: Licensed under the GPL-3.0 License. See the [LICENSE](https://github.com/engels74/obzorarr-docker/blob/master/LICENSE) file for details.
- **Obzorarr Application**: Licensed under the AGPL-3.0 License. See the [obzorarr repository](https://github.com/engels74/obzorarr) for details.