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
- Host: GitHub
- URL: https://github.com/engels74/obzorarr-docker
- Owner: engels74
- License: gpl-3.0
- Created: 2025-12-23T21:11:31.000Z (6 months ago)
- Default Branch: release
- Last Pushed: 2026-01-19T23:14:17.000Z (5 months ago)
- Last Synced: 2026-01-20T05:52:00.295Z (5 months ago)
- Topics: docker-image
- Language: Dockerfile
- Homepage: https://engels74.net/containers/obzorarr/
- Size: 104 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Obzorarr Docker Image
## 📖 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.