Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 781 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 781 Bytes

Docker image for dudel

Download config.py and adjust the settings.

docker run -v "$(readlink -f config.py)" -p 80:8888 --name dudel --restart unless-stopped rankenstein/dudel
version: '2'
services:
    dudel:
        container_name: dudel
        image: rankenstein/dudel
        volumes:
            - ./config.py:/dudel/config.py
        ports:
            - 80:8888
        restart: unless-stopped

You might want to run a postgres database image and configure the connection in config.py.

On the first run, initialise the database by running (this will delete existing data!):

docker exec dudel python2 /dudel/scripts/init.py