Skip to content

rankenstein/docker-dudel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published