2016-04-20 17:04:43 +03:00
2015-10-22 10:12:56 +02:00
2016-04-20 17:04:43 +03:00
2015-10-04 22:40:05 +02:00
2015-11-14 23:06:59 +01:00
2016-03-22 23:40:55 +02:00

DockerFile for invoice ninja (https://www.invoiceninja.com/)

This image is based on php:7 official version.

The easiest way to try this image is via docker compose :

db:
  image: mysql
  environment:
    MYSQL_DATABASE: ninja
    MYSQL_ROOT_PASSWORD: mdp

app:
  image: invoiceninja/invoiceninja
  links:
    - db:mysql

web:
  image: nginx
  volumes:
    - ./nginx.conf:/etc/nginx/nginx.conf:ro
  links:
    - app
  volumes_from:
    - app
  ports:
    - 80
Languages
Markdown 100%