Skip to main content

Posts

Showing posts from September, 2025

Install and run frePPle with docker compose

Install and run frePPle with docker  compose   🚀 Run FrePPLe with Docker Compose Create a docker-compose.yaml file and paste this code inside,  and then run this command in the same directory of the file:  $ docker compose up -d   version: '3.1' services: db: image: postgres:14 environment: POSTGRES_USER: frepple POSTGRES_PASSWORD: frepple POSTGRES_DB: frepple volumes: - frepple_db:/var/lib/postgresql/data web: image: ghcr.io/frepple/frepple-community:9.10.0 ports: - "8000:80" environment: POSTGRES_HOST: db POSTGRES_DB: frepple POSTGRES_USER: frepple POSTGRES_PASSWORD: frepple depends_on: - db volumes: frepple_db:    ✅ Access the UI Open your browser at: http://localhost:8000 Default login: User: admin Password: admin ✅ — your container is up and mapped to port 8000 on your system. Now just open a browser and go to: http://localhost:8000 ...