Skip to content

Commit

Permalink
docker compose working
Browse files Browse the repository at this point in the history
  • Loading branch information
maximizer committed Aug 10, 2018
1 parent 304e00a commit 506acb0
Show file tree
Hide file tree
Showing 10 changed files with 406 additions and 28 deletions.
6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

199 changes: 199 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ RUN apt-get update -q -y \
git

COPY . /var/www/html
COPY ./etc/apache2.conf /etc/apache2/apache2.conf

# Configuring Apache
RUN rm /etc/apache2/sites-available/000-default.conf

# Enable rewrite module
RUN a2enmod rewrite

# Enable rewrite module
RUN a2enmod rewrite

WORKDIR /var/www/html

Expand Down
Loading

0 comments on commit 506acb0

Please sign in to comment.