diff --git a/Readme.md b/Readme.md index 8ef64c2..2dd58eb 100644 --- a/Readme.md +++ b/Readme.md @@ -247,6 +247,28 @@ networks: The `teron-mock` service is reachable from `ntech` at `http://teron-mock:4566` over the internal Docker network — the port is not exposed to the host. +To run as a standalone Docker container: + +```yaml +# docker-compose.fisk.yml +services: + teron-mock: + image: ghcr.io/dalibor31/ntech-fisk:latest + container_name: teron_mock + restart: unless-stopped + ports: + - "4566:4566" + volumes: + - teron-data:/app/data + +volumes: + teron-data: +``` + +```bash +docker compose -f docker-compose.fisk.yml up -d +``` + To run the mock server locally (without Docker): ```bash diff --git a/Readme_sr.md b/Readme_sr.md index 1f95a6f..bacf6e3 100644 --- a/Readme_sr.md +++ b/Readme_sr.md @@ -247,6 +247,28 @@ networks: Servis `teron-mock` je dostupan iz `ntech` kontejnera na adresi `http://teron-mock:4566` preko interne Docker mreže — port nije izložen spolja. +Za pokretanje kao samostalni Docker kontejner: + +```yaml +# docker-compose.fisk.yml +services: + teron-mock: + image: ghcr.io/dalibor31/ntech-fisk:latest + container_name: teron_mock + restart: unless-stopped + ports: + - "4566:4566" + volumes: + - teron-data:/app/data + +volumes: + teron-data: +``` + +```bash +docker compose -f docker-compose.fisk.yml up -d +``` + Za lokalno pokretanje moka (bez Dockera): ```bash