Skip to content

Instantly share code, notes, and snippets.

@grahamg
Last active June 19, 2018 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grahamg/af790063911ba120dd7c3fe17b7300f3 to your computer and use it in GitHub Desktop.
Save grahamg/af790063911ba120dd7c3fe17b7300f3 to your computer and use it in GitHub Desktop.
Docker DevLounge Notes (6/18/18)
*Dockerfile*
FROM php:7.0.17-apache
RUN apt-get update
RUN apt-get install -y apt-utils vim curl sqlite3
RUN pecl install xdebug
ADD ./db/test.db /test.db
ADD ./php.ini /usr/local/etc/php
EXPOSE 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment