> For the complete documentation index, see [llms.txt](https://docs.ipcheck.ing/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ipcheck.ing/developer/fr/getting-started/quickstart.md).

# Démarrage rapide

Le moyen le plus rapide d’exécuter MyIP est l’image Docker préconstruite. Vous avez besoin de Docker et d’un compte MaxMind GeoLite2 gratuit.

{% stepper %}
{% step %}

#### Obtenir les identifiants MaxMind

MyIP utilise les bases de données gratuites **GeoLite2** pour la géolocalisation IP et les recherches ASN. Inscrivez-vous sur [maxmind.com/en/geolite2/signup](https://www.maxmind.com/en/geolite2/signup), puis générez une clé de licence à partir de la **Gérer les clés de licence** page.

Guide complet : [Configuration de MaxMind](/developer/fr/getting-started/maxmind-setup.md).
{% endstep %}

{% step %}

#### Démarrer le conteneur

{% code title="docker run" %}

```bash
docker run -d \
  -p 18966:18966 \
  -e MAXMIND_ACCOUNT_ID="your-account-id" \
  -e MAXMIND_LICENSE_KEY="your-license-key" \
  -e MAXMIND_AUTO_UPDATE="true" \
  --name myip \
  --restart always \
  jason5ng32/myip:latest
```

{% endcode %}
{% endstep %}

{% step %}

#### Ouvrez l’application

Accédez à <http://localhost:18966>.
{% endstep %}
{% endstepper %}

{% hint style="info" %}
**Au premier démarrage, les bases de données GeoLite2 sont téléchargées.** Le backend tente le téléchargement avant de commencer à écouter, et abandonne après 5 minutes afin qu’un mauvais identifiant ne bloque jamais le démarrage. Suivez l’opération avec `docker logs -f myip` — vous devez repérer la ligne `📦 Bases de données MaxMind chargées`.
{% endhint %}

{% hint style="warning" %}
**`localhost` fonctionne immédiatement. Un vrai domaine, non.** Le backend rejette chaque `/api/*` requête dont le `Referer` nom d’hôte n’est pas `localhost` et n’est pas répertorié dans `ALLOWED_DOMAINS`. Avant de déployer MyIP sur un domaine, lisez [Reverse Proxy et domaines](/developer/fr/getting-started/reverse-proxy-and-domains.md).
{% endhint %}

## Étapes suivantes

* [Déployer avec Docker](/developer/fr/getting-started/deploy-with-docker.md) — Compose, mises à niveau, mappage de ports, emplacement des données
* [Déployer avec Node.js](/developer/fr/getting-started/deploy-with-nodejs.md) — compiler à partir des sources, exécuter sous pm2
* [Clés API facultatives](/developer/fr/configuration/optional-api-keys.md) — sources de données IP supplémentaires, cartes, recherche MAC
* [Variables d’environnement](/developer/fr/reference/environment-variables.md) — la liste complète


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.ipcheck.ing/developer/fr/getting-started/quickstart.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
