KitchenOwl

A cross-platform shopping list, recipe storage, expense tracker, and meal planner following the material design language.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3"
services:
  front:
    image: tombursch/kitchenowl-web:latest
    restart: unless-stopped
    # environment:
    #   - BACK_URL=back:5000 # Change this if you rename the containers
    ports:
      - "80:80"
    depends_on:
      - back
  back:
    image: tombursch/kitchenowl-backend:latest
    restart: unless-stopped
    environment:
      - JWT_SECRET_KEY=PLEASE_CHANGE_ME
    volumes:
      - ./kitchenowl_data:/data

Resources

Website: https://kitchenowl.org/

Docs: https://docs.kitchenowl.org/

GitHub: https://github.com/TomBursch/kitchenowl

Docker Hub: https://hub.docker.com/u/tombursch

Configuration: https://docs.kitchenowl.org/latest/self-hosting/