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 FROM php:7.4-apache AS base
WORKDIR /var/www/html WORKDIR /var/www/html
RUN apt update && \ RUN apt-get update && \
apt install -y \ apt-get install -y \
libicu-dev \ libicu-dev \
libgd-dev \ libgd-dev \
libonig-dev \ libonig-dev \
unzip && \ unzip && \
apt purge -y --auto-remove && \ apt-get purge -y --auto-remove && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*

View File

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