Set up Frappe Education using Docker
developUse Docker and Docker Compose to run Frappe Education locally. Ensure you have Docker, docker-compose, and git installed.
- Create a directory and download the required configuration files:
mkdir frappe-education cd frappe-education wget -O docker-compose.yml https://raw.githubusercontent.com/frappe/education/develop/docker/docker-compose.yml wget -O init.sh https://raw.githubusercontent.com/frappe/education/develop/docker/init.sh - Start the containers in detached mode:
docker compose up -d
Accessing the application:
- URL:
http://education.localhost:8000/ - Default Username:
Administrator - Default Password:
admin
mkdir frappe-education
cd frappe-education
# Download the docker-compose file
wget -O docker-compose.yml https://raw.githubusercontent.com/frappe/education/develop/docker/docker-compose.yml
# Download the setup script
wget -O init.sh https://raw.githubusercontent.com/frappe/education/develop/docker/init.sh
docker compose up -d