Skip to content

k3p7i3/d8clients

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker instructions

To build the docker image (under name nis-app), use

docker build -t nis-app .

To run the container, you need to do several things:

  • First, create a volume (let's call it database) for database persistence:
    docker volume create database
  • Then, run the image in background, forwarding port 8000 to 0.0.0.0:80 and mounting database volume to /app/db:
    docker run -dp 0.0.0.0:80:8000 -v database:/app/db nis-app