Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock

docker compose pull

docker compose -f docker compose.yml --compatibility up -d
docker compose -f docker-compose.yml --compatibility up -d
```

To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.

For example to expose the system to all network interfaces.

```
LISTEN_IP="0.0.0.0" docker compose -f docker compose.yml --compatibility up -d
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
```

- Windows Machine
Expand All @@ -59,15 +59,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock

docker compose pull

docker compose -f docker compose.yml --compatibility up -d
docker compose -f docker-compose.yml --compatibility up -d
```

To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.

For example to expose the system to all network interfaces.

```
LISTEN_IP="0.0.0.0" docker compose -f docker compose.yml --compatibility up -d
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
```

- To use the latest development version
Expand All @@ -83,15 +83,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock

docker compose pull

docker compose -f docker compose.yml --compatibility up -d
docker compose -f docker-compose.yml --compatibility up -d
```

To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.

For example to expose the system to all network interfaces.

```
LISTEN_IP="0.0.0.0" docker compose -f docker compose.yml --compatibility up -d
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
```

- Windows Machine
Expand All @@ -105,15 +105,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock

docker compose pull

docker compose -f docker compose.yml --compatibility up -d
docker compose -f docker-compose.yml --compatibility up -d
```

To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.

For example to expose the system to all network interfaces.

```
LISTEN_IP="0.0.0.0" docker compose -f docker compose.yml --compatibility up -d
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
```


Expand Down