All Projects → beevelop → docker-directus

beevelop / docker-directus

Licence: other
🐇 Directus is an awesome database GUI that provides a feature-rich environment for rapid development and management of custom database schemas.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to docker-directus

Gem
💎 GUI for Data Modeling with Elasticsearch
Stars: ✭ 654 (+4930.77%)
Mutual labels:  database-gui
Sdk Js
Directus JS SDK — JavaScript Software Development Kit for Node and Browser
Stars: ✭ 117 (+800%)
Mutual labels:  database-gui
gatsby-source-directus7
Source plugin for pulling data into GatsbyJS from Directus CMS (https://directus.io)
Stars: ✭ 17 (+30.77%)
Mutual labels:  directus
Fastonosql
FastoNoSQL is a crossplatform Redis, Memcached, SSDB, LevelDB, RocksDB, UnQLite, LMDB, ForestDB, Pika, Dynomite, KeyDB GUI management tool.
Stars: ✭ 1,001 (+7600%)
Mutual labels:  database-gui
Docker
Directus Docker — The Official Docker Container for the Directus Suite
Stars: ✭ 93 (+615.38%)
Mutual labels:  database-gui
Gormat
☄ The golang convenient converter supports Database to Struct, SQL to Struct, and JSON to Struct.
Stars: ✭ 215 (+1553.85%)
Mutual labels:  database-gui
Diwata
A user-friendly database interface
Stars: ✭ 386 (+2869.23%)
Mutual labels:  database-gui
directus-conditional-fields
An interface to manage directus fields in the administration panel
Stars: ✭ 38 (+192.31%)
Mutual labels:  directus
Crudlex
CRUDlex is an easy to use CRUD generator for Symfony 4 and Silex 2 which is great for auto generated admin pages
Stars: ✭ 102 (+684.62%)
Mutual labels:  database-gui
migration-tool
Automated script to migrate from Directus v8 to Directus v9
Stars: ✭ 21 (+61.54%)
Mutual labels:  directus
Directtoswiftui
Rule based CRUD Database Frontends for SwiftUI
Stars: ✭ 49 (+276.92%)
Mutual labels:  database-gui
React Antd Admin
用React和Ant Design搭建的一个通用管理后台
Stars: ✭ 1,313 (+10000%)
Mutual labels:  database-gui
Sqlitebrowser
Official home of the DB Browser for SQLite (DB4S) project. Previously known as "SQLite Database Browser" and "Database Browser for SQLite". Website at:
Stars: ✭ 15,801 (+121446.15%)
Mutual labels:  database-gui
Pods
The Pods Framework is a Content Development Framework for WordPress - It lets you create and extend content types that can be used for any project. Add fields of various types we've built in, or add your own with custom inputs, you have total control.
Stars: ✭ 883 (+6692.31%)
Mutual labels:  database-gui
directus-extension-editorjs-interface
Block editor (Editor.js) interface for Directus 9
Stars: ✭ 92 (+607.69%)
Mutual labels:  directus
App
Directus Admin Application — An Intuitive WebApp for Managing Database Content
Stars: ✭ 464 (+3469.23%)
Mutual labels:  database-gui
Mirage
🎨 GUI for simplifying Elasticsearch Query DSL
Stars: ✭ 2,143 (+16384.62%)
Mutual labels:  database-gui
Squrl
SQURL is a cross-platform desktop application designed for developers who are looking to generate meaningful test data and monitor database KPIs
Stars: ✭ 95 (+630.77%)
Mutual labels:  database-gui
Directus
Open-Source Data Platform 🐰 — Directus wraps any SQL database with a real-time GraphQL+REST API and an intuitive app for non-technical users.
Stars: ✭ 13,190 (+101361.54%)
Mutual labels:  directus
directus-metalsmith-snipcart
Lookbook web app with Directus' open source headless CMS, Metalsmith, Vue.js & Snipcart
Stars: ✭ 14 (+7.69%)
Mutual labels:  directus

Travis Pulls Layers Size Release Badges Beevelop

Directus containerized

Directus is an awesome database GUI that provides a feature-rich environment for rapid development and management of custom database schemas.

Quickstart (recommended)

  1. git clone https://github.com/beevelop/docker-directus && cd docker-directus
  2. Adapt docker-compose.yml to your needs
  3. Run using docker-compose up

Pull from Docker Hub

docker pull beevelop/directus:latest

Or build from GitHub

docker build -t beevelop/directus github.com/beevelop/docker-directus

Then run image

# Start the mysql database
docker run -e MYSQL_ROOT_PASSWORD=Un1c0rns_4r3_4w3s0m3 \
          -e MYSQL_DATABASE=directus -e MYSQL_USER=directus \
          -e MYSQL_PASSWORD=Un1c0rn \
          -v `pwd`/db/:/var/lib/mysql/ \
          --name mysql -d mysql:5.5

# Start directus
docker run -e [email protected] \
           -e SITE_NAME=Dockerectus \
           -e ADMIN_PASSWORD=Un1c0rn \
           -v `pwd`/logs/:/var/www/html/api/logs \
           -v `pwd`/media/:/var/www/html/storage/uploads \
           --link mysql:mysql \
           -p 8080:80 \
           --name directus -d beevelop/directus

You should the be able to access your Directus installation at http://YOUR_HOST:8080 (login with [email protected]:Un1c0rn).

Use as base image

FROM beevelop/directus:latest

One does not simply use latest

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].