Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 591 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 591 Bytes

documize-docker

An unofficial docker image for documize.

Usage

Here is an example docker-compose file.

version: '3.5'

services:
    documize:
        image: targodan/documize:latest
        restart: always
        ports:
            - "80:80"
        environment:
            - DOCUMIZE_DB_TYPE=mysql
            - DOCUMIZE_DB_CONNECTION="user:password@tcp(localhost:3306)/dbname"

For different DB types and connection URIs see the documize installation guide.