README: samostalni docker-compose za Fisk mock server

This commit is contained in:
2026-06-24 23:06:07 +02:00
parent 0972ccecfa
commit 606c45d765
2 changed files with 44 additions and 0 deletions
+22
View File
@@ -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
+22
View File
@@ -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