Skip to content
Akram El Assas edited this page Oct 17, 2023 · 7 revisions

This section describes how build and run Wexflow Docker image.

unzip wexflow-linux-netcore.zip

The folder ./wexflow/ will be created on your current folder.

|-- ./
|-- ./wexflow/
|-- ./Dockerfile
|-- ./docker-compose.yml
  • Run the following command on your current folder:
docker compose up

The folder ./wexflow/ will be mounted during the compose at runtime so you can have access to ./wexflow/Wexflow configuration folder and add custom tasks and their references at runtime, access log files and change the configuration if you want.

That's it Wexflow will start and the backend will be accessible from: http://localhost:8011/

If you have already deployed Wexflow image and want to upgrade to another version, run the following commands to make sure you get all features updated:

docker compose build --no-cache
docker compose up

If you want to use MongoDB instead of SQLite, follow the instructions in docker-compose.yml file.

Clone this wiki locally