Spaces:
Running
Running
File size: 730 Bytes
d202ada |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# Run Langflow
## Docker compose
To run Langflow with Docker compose, you need to have Docker and Docker compose installed on your machine. You can install Docker and Docker compose by following the instructions on the [official Docker documentation](https://docs.docker.com/get-docker/).
The docker-compose file uses `latest` tag; it's recommended to pull the latest version of the images before running the docker-compose file.
```bash
docker compose pull
```
To start the Langflow services, run the following command:
```bash
docker compose up
```
After running the command, you can access the Langflow services at the following url: http://localhost:80.
Edit the `.env` file to change the port or other configurations. |