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 437B

1234567891011121314151617181920
  1. FROM ubuntu:18.04
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. # install: php / mysql / postgres / tools
  4. RUN apt-get update && apt-get -y install \
  5. php-cli php-xml \
  6. mysql-server mysql-client php-mysql \
  7. postgresql php-pgsql \
  8. postgresql-10-postgis-2.4 \
  9. git wget
  10. # install locales
  11. RUN apt-get -y install locales
  12. RUN locale-gen en_US.UTF-8
  13. RUN update-locale LANG=en_US.UTF-8
  14. # install run script
  15. ADD run.sh /usr/sbin/docker-run
  16. CMD docker-run