Ich bin ziemlich neu in Docker und versuche daher, mithilfe eines Laravel-Projekts mehr darüber zu erfahren. Ich folge diesem Tutorial:
Ich habe die Docker-Datei ein wenig von dem angepasst, was das Tutorial hat, aber selbst die Tutorial-Datei führt zum gleichen Ergebnis.
FROM php:7.3-fpm
# Copy composer.lock and composer.json
COPY composer.lock composer.json /var/www/
# Install dependencies
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
apt-get update && apt-get install -y mysql-client \
RUN npm install -g npm
# Clear cache
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# Install extensions
RUN docker-php-ext-install pdo pdo_mysql
# Install composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
# Add user for laravel application
RUN groupadd -g 1000 www
RUN useradd -u 1000 -ms /bin/bash -g www www
# Copy existing application directory contents
COPY . /var/www
# Copy existing application directory permissions
COPY --chown=www:www . /var/www
# Change current user to www
USER www
# Set working directory
WORKDIR /var/www
# Expose port 9000 and start php-fpm server
EXPOSE 9000
CMD ["php-fpm"]
Aber ich bekomme immer wieder den folgenden Fehler, wenn ich laufe docker-compose up -d
:
E: Package 'mysql-client' has no installation candidate
ERROR: Service 'app' failed to build: The command '/bin/sh -c curl -sL https://deb.nodesource.com/setup_10.x | bash - && apt-get update && apt-get install -y mysql-client nodejs build-essential vim git curl' returned a non-zero code: 100
Vermisse ich etwas
Ich habe erwartet, dass dies funktioniert, da ich apt-get update
vor der Installation ausgeführt werde mysql-client
.
Vielen Dank.
quelle
default-mysql-client
habe den Trick geändert, danke!Ich hatte das gleiche Problem in
php:7.1-apache
. Ersetzenmysql-client
durchmariadb-client
funktioniert für mich. Vielen Dank.quelle
php:7.2-apache
löst den Fehler ebenfalls aus, aber ich behebe ihn mitphp:7.2.18-apache
quelle