Restore volume for local development.

This commit is contained in:
2024-02-25 08:13:31 +01:00
parent 19e9d31992
commit a6edc1bb02
2 changed files with 5 additions and 5 deletions

View File

@@ -1,13 +1,13 @@
FROM php:7.4-apache AS base
WORKDIR /var/www/html
RUN apt update && \
apt install -y \
RUN apt-get update && \
apt-get install -y \
libicu-dev \
libgd-dev \
libonig-dev \
unzip && \
apt purge -y --auto-remove && \
apt-get purge -y --auto-remove && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*

View File

@@ -6,8 +6,8 @@ services:
container_name: startup-app
ports:
- '80:80'
# volumes:
# - ./:/var/www/html
volumes:
- ./:/var/www/html
links:
- db
networks: