Install and Run frePPLe with Docker Compose
A quick and simple way to deploy frePPLe using Docker Compose.
🚀 Run frePPLe with Docker Compose
Follow these steps to get frePPLe running locally in minutes using Docker.
Step 1: Create docker-compose.yaml
Create a file named docker-compose.yaml and paste the following configuration:
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:
Step 2: Start the Containers
Run the following command in the same directory:
docker compose up -d
This will download the required images and start the services in the background.
✅ Access the frePPLe UI
Once the containers are running, open your browser and go to:
http://localhost:8000
Or:
http://127.0.0.1:8000
🔑 Default Credentials
- Username:
admin - Password:
admin
✅ Your container is now running and mapped to port 8000.
📦 GitHub Project
You can find the full project and updates here:
👉 https://github.com/kobros-tech/frepple-docker
🌐 More from Me
Check out more tutorials, DevOps guides, and Odoo-related content on my website:
📝 Notes
- Make sure Docker and Docker Compose are installed on your system.
- If port
8000is already in use, change it in the compose file. - Use
docker compose logs -fto debug issues.
🚀 You now have frePPLe running locally with Docker in just a few minutes!
Comments
Post a Comment