diff --git a/README.md b/README.md index 5b54d31..8b730b0 100755 --- a/README.md +++ b/README.md @@ -1,3 +1,41 @@ -# utools +# utools - IP Information Webapp -Ich versuche mal was :) \ No newline at end of file + +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 + + ``` \ No newline at end of file