website/docs: remove references to legacy Docker Compose v1 (#8138)
This commit is contained in:
@ -64,8 +64,8 @@ Next, run the upgrade commands below.
|
||||
<TabItem value="docker-compose">
|
||||
|
||||
```shell
|
||||
docker-compose pull
|
||||
docker-compose up -d
|
||||
docker compose pull
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
|
@ -25,7 +25,7 @@ import TabItem from "@theme/TabItem";
|
||||
If you are using Docker Compose, edit your <code>.env</code> file to append any keys that you want to add, and then run the following command to apply them:
|
||||
|
||||
```
|
||||
docker-compose up -d
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
@ -49,7 +49,7 @@ To check if your config has been applied correctly, you can run the following co
|
||||
<TabItem value="docker-compose" label="Docker Compose" default>
|
||||
|
||||
```
|
||||
docker-compose run --rm worker dump_config
|
||||
docker compose run --rm worker dump_config
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
|
@ -76,7 +76,7 @@ COMPOSE_PORT_HTTP=80
|
||||
COMPOSE_PORT_HTTPS=443
|
||||
```
|
||||
|
||||
See [Configuration](../installation/configuration) to change the internal ports. Be sure to run `docker-compose up -d` to rebuild with the new port numbers.
|
||||
See [Configuration](../installation/configuration) to change the internal ports. Be sure to run `docker compose up -d` to rebuild with the new port numbers.
|
||||
|
||||
## Startup
|
||||
|
||||
@ -90,8 +90,8 @@ This will not give any advantages. It will cause problems with OAuth and SAML au
|
||||
Afterwards, run these commands to finish:
|
||||
|
||||
```shell
|
||||
docker-compose pull
|
||||
docker-compose up -d
|
||||
docker compose pull
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
The `docker-compose.yml` file statically references the latest version available at the time of downloading the compose file. Each time you upgrade to a newer version of authentik, you download a new `docker-compose.yml` file, which points to the latest available version. For more information, refer to the **Upgrading** section in the [Release Notes](../releases).
|
||||
|
Reference in New Issue
Block a user