content/influxdb/v2/install/upgrade/v1-to-v2/docker.md
Use the automated upgrade process built into the InfluxDB 2.x Docker image to update InfluxDB 1.x Docker deployments to InfluxDB 2.x.
[!Note]
Export continuous queries before upgrading
The automated upgrade process does not migrate InfluxDB 1.x continuous queries (CQs) to InfluxDB 2.x tasks (the 2.x equivalent). Export all of your CQs before upgrading to InfluxDB 2.x. For information about exporting and migrating CQs to tasks, see Migrate continuous queries to tasks.
InfluxDB 2.x provides a 1.x compatibility API, but expects a different storage layout on disk.
To account for theses differences, the InfluxDB Docker image migrates
1.x data and into 2.x-compatible data automatically before booting the influxd server.
{{% note %}} To ensure InfluxDB reboots post-upgrade without overwriting migrated data, the upgrade won't run if an existing boltdb file is found at the configured 2.x configuration path. {{% /note %}}
Find more information about the automated InfluxDB upgrade process, see Automatically upgrade from InfluxDB 1.x to {{< current-version >}}.
The automated InfluxDB upgrade process bootstraps an initial admin user, organization, and bucket required by InfluxDB 2.x. Set the following environment variables in your Docker container to provide setup credentials:
DOCKER_INFLUXDB_INIT_USERNAME: Username to set for the admin user ({{< req >}}).DOCKER_INFLUXDB_INIT_PASSWORD: Password to set for the admin user ({{< req >}}).DOCKER_INFLUXDB_INIT_ORG: Name to set for the initial organization ({{< req >}}).DOCKER_INFLUXDB_INIT_BUCKET: Name to set for the initial bucket ({{< req >}}).DOCKER_INFLUXDB_INIT_RETENTION: Duration for the initial bucket's retention period.
If not set, the initial bucket will retain data forever.DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: API token to associate with the admin user.
If not set, InfluxDB automatically generates a token.The InfluxDB upgrade process requires extra volumes to be mounted into the 2.x container. Use environment variables and Docker mounts to specify and configure the appropriate mount paths for the following:
/var/lib/influxdb2)/etc/influxdb2)The InfluxDB upgrade process searches for mounted 1.x data and configuration files in the following priority order:
DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG environment variableDOCKER_INFLUXDB_INIT_UPGRADE_V1_DIR environment variable/etc/influxdb/influxdb.conf/var/lib/influxdb{{% note %}}
By default, the automated upgrade process generates both data and configuration files
under /var/lib/influxdb2 and /etc/influxdb2.
We recommend mounting volumes at both paths to avoid losing data.
{{% /note %}}
Set the DOCKER_INFLUXDB_INIT_MODE environment variable to upgrade.
If you're currently running a minimal InfluxDB 1.x deployment similar to:
docker run -p 8086:8086 \
-v influxdb:/var/lib/influxdb \
influxdb:1.8
To upgrade this minimal deployment to InfluxDB 2.x:
Stop the running InfluxDB 1.x container.
Start the InfluxDB container with the following:
influxdb:{{< current-version >}} Docker imagedocker run -p 8086:8086 \
-v influxdb:/var/lib/influxdb \
-v influxdb2:/var/lib/influxdb2 \
-e DOCKER_INFLUXDB_INIT_MODE=upgrade \
-e DOCKER_INFLUXDB_INIT_USERNAME=my-user \
-e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \
-e DOCKER_INFLUXDB_INIT_ORG=my-org \
-e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \
influxdb:{{< current-version >}}
If you're currently running an InfluxDB 1.x deployment with a custom configuration file similar to:
docker run -p 8086:8086 \
-v influxdb:/var/lib/influxdb \
-v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro \
influxdb:1.8
To upgrade an InfluxDB 1.x deployment with a custom configuration file to InfluxDB 2.x:
Stop the running InfluxDB 1.x container.
Start the InfluxDB container with the following:
/var/lib/influxdb2)/etc/influxdb2)influxdb:{{< current-version >}} Docker imagedocker run -p 8086:8086 \
-v influxdb:/var/lib/influxdb \
-v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro \
-v influxdb2:/var/lib/influxdb2 \
-v influxdb2:/etc/influxdb2 \
-e DOCKER_INFLUXDB_INIT_MODE=upgrade \
-e DOCKER_INFLUXDB_INIT_USERNAME=my-user \
-e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \
-e DOCKER_INFLUXDB_INIT_ORG=my-org \
-e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \
influxdb:{{< current-version >}}
If you're currently running an InfluxDB 1.x deployment with the data directory and configuration file mounted at custom paths similar to:
docker run -p 8086:8086 \
-v influxdb:/root/influxdb/data \
-v $PWD/influxdb.conf:/root/influxdb/influxdb.conf:ro \
influxdb:1.8 -config /root/influxdb/influxdb.conf
To upgrade an InfluxDB 1.x deployment with custom paths to InfluxDB 2.x:
{{< tabs-wrapper >}} {{% tabs %}} Keep using custom paths Use InfluxDB 2.x defaults {{% /tabs %}}
<!-------------------------- BEGIN KEEP CUSTOM PATHS -------------------------->{{% tab-content %}}
To retain your custom InfluxDB 1.x paths, start the InfluxDB container with the following:
DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIGINFLUXD_CONFIG_PATHINFLUXD_BOLT_PATHINFLUXD_ENGINE_PATHinfluxdb:{{< current-version >}} Docker imagedocker run -p 8086:8086 \
-v influxdb:/root/influxdb/data \
-v $PWD/influxdb.conf:/root/influxdb/influxdb.conf:ro \
-v influxdb2:/root/influxdb2/data \
-v influxdb2:/root/influxdb2 \
-e DOCKER_INFLUXDB_INIT_MODE=upgrade \
-e DOCKER_INFLUXDB_INIT_USERNAME=my-user \
-e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \
-e DOCKER_INFLUXDB_INIT_ORG=my-org \
-e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \
-e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \
-e INFLUXD_CONFIG_PATH=/root/influxdb2/config.toml \
-e INFLUXD_BOLT_PATH=/root/influxdb2/influxdb.bolt \
-e INFLUXD_ENGINE_PATH=/root/influxdb2/engine \
influxdb:{{< current-version >}}
{{% /tab-content %}}
<!--------------------------- END KEEP CUSTOM PATHS ---------------------------> <!-------------------------- BEGIN USE 2.x DEFAULTS --------------------------->{{% tab-content %}} To use default InfluxDB 2.x paths, start the InfluxDB container with the following:
/var/lib/influxdb2)/etc/influxdb2)DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIGinfluxdb:{{< current-version >}} Docker imagedocker run -p 8086:8086 \
-v influxdb:/root/influxdb/data \
-v $PWD/influxdb.conf:/root/influxdb/influxdb.conf:ro \
-v influxdb2:/var/lib/influxdb2 \
-v influxdb2:/etc/influxdb2 \
-e DOCKER_INFLUXDB_INIT_MODE=upgrade \
-e DOCKER_INFLUXDB_INIT_USERNAME=my-user \
-e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \
-e DOCKER_INFLUXDB_INIT_ORG=my-org \
-e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \
-e DOCKER_INFLUXDB_INIT_UPGRADE_V1_CONFIG=/root/influxdb/influxdb.conf \
influxdb:{{< current-version >}}
{{% /tab-content %}}
<!--------------------------- END USE 2.x DEFAULTS ---------------------------->{{< /tabs-wrapper >}}
The InfluxDB {{< current-version >}} influx CLI includes an interactive InfluxQL shell for executing InfluxQL queries.
The InfluxDB {{< current-version >}} Docker image includes the influx CLI.
To start an InfluxQL shell:
Start a bash session in your InfluxDB container:
docker exec -it influxdb /bin/bash
Set up your influx CLI authentication credentials.
Run the influx v1 shell command.
For more information, see:
To build an interactive shell to execute Flux queries, compile and build a command line Flux REPL from source.