Move the Docker files into their own folder

This commit is contained in:
Robin Whittleton 2021-02-10 18:27:36 +01:00 committed by Alex Cabal
parent 74276ff511
commit c36fde5c8c
3 changed files with 2 additions and 2 deletions

View file

@ -63,7 +63,7 @@ If everything went well, `https://standardebooks.test/ebooks/` will show the one
We provide a Dockerfile for testing code changes. You can build an image with:
```shell
docker build . -t standardebooks
docker build . -t standardebooks -f vms/docker/Dockerfile
```
Then run the built image with:

View file

@ -15,4 +15,4 @@ RUN a2enmod headers expires ssl rewrite proxy proxy_fcgi
RUN echo "opcache.enable=0\n" >> /etc/php/7.4/fpm/php.ini
EXPOSE 443
ENTRYPOINT ["/standardebooks.org/web/scripts/docker/start-server.sh"]
ENTRYPOINT ["/standardebooks.org/web/vms/docker/start-server.sh"]