First you need to install docker
and docker-compose
After you have started the services (docker-compose up -d
),
you can collect the static files and create a superuser account:
# collect static files
docker-compose exec -u0 wpm /bin/sh -c 'python manage.py collectstatic --no-input'
# create superuser
docker-compose exec wpm /bin/sh -c 'python manage.py createsuperuser --username=admin --email=admin@example.de'
Afterwards you can access the application: http://localhost:8080
You can change the port inside the docker-compose.yml