api de gestion de ticket, basé sur php-crud-api. Le but est de décorrélé les outils de gestion des données, afin
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 369B

12345678910111213141516
  1. FROM debian:9
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. # install: php / mysql / postgres / sqlite / tools / mssql deps
  4. RUN apt-get update && apt-get -y install \
  5. php-cli php-xml \
  6. mariadb-server mariadb-client php-mysql \
  7. postgresql php-pgsql \
  8. postgresql-9.6-postgis-2.3 \
  9. sqlite php-sqlite3 \
  10. git wget
  11. # install run script
  12. ADD run.sh /usr/sbin/docker-run
  13. CMD docker-run