Update README.md

This commit is contained in:
Leafy :3 2025-01-07 12:03:14 +01:00
parent 94710dbb4f
commit 4b106fe1d0

View file

@ -57,3 +57,14 @@ docker run -p 8080:80 cinny:latest
``` ```
This will forward your `localhost` port 8080 to the container's port 80. You can visit the app in your browser by navigating to `http://localhost:8080`. This will forward your `localhost` port 8080 to the container's port 80. You can visit the app in your browser by navigating to `http://localhost:8080`.
Or use Docker Compose
```
services:
cinny:
image: git.yiffing.dev/leafus/cinny-improved:latest
restart: always
ports:
- 8444:80
```