mirror of
https://github.com/MrUnknownDE/utools.git
synced 2026-04-09 09:53:50 +02:00
add compose.yml an README.md
This commit is contained in:
42
README.md
42
README.md
@@ -1,3 +1,41 @@
|
||||
# utools
|
||||
# utools - IP Information Webapp
|
||||
|
||||
Ich versuche mal was :)
|
||||
|
||||
start this tool with compose.yml:
|
||||
```yml
|
||||
services:
|
||||
backend:
|
||||
image: ghcr.io/mrunknownde/utools-backend
|
||||
container_name: utools_backend
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 3000
|
||||
LOG_LEVEL: info
|
||||
PING_COUNT: 4
|
||||
ports:
|
||||
- "3000:3000"
|
||||
dns:
|
||||
- 1.1.1.1 # Cloudflare DNS
|
||||
- 1.0.0.1 # Cloudflare DNS
|
||||
- 8.8.8.8 # Google DNS
|
||||
- 8.8.4.4 # Google DNS
|
||||
networks:
|
||||
- utools_network
|
||||
|
||||
frontend:
|
||||
image: ghcr.io/mrunknownde/utools-frontend
|
||||
container_name: utools_frontend
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8080:80"
|
||||
depends_on:
|
||||
- backend
|
||||
networks:
|
||||
- utools_network
|
||||
|
||||
networks:
|
||||
utools_network:
|
||||
driver: bridge
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user