@font-face {
font-family: 'nucleo-icons';
src: url('../fonts/nucleo-icons.eot');
итд...
}
./VBoxLinuxAdditions.run :
Please install the Linux kernel "header" files matching the current kernel
apt install linux-headers-$(uname -r):
Unable to locate package linux-headers-4.14.104-boot2docker
<VirtualHost *:80>
ServerName sf4.local
ServerAlias sf4.local www.sf4.local
ServerAdmin webmaster@localhost
DocumentRoot /usr/local/apache2/htdocs/symfony
<Directory /usr/local/apache2/htdocs/symfony>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
</VirtualHost>
bash-4.4# ls -lsh
total 68
4 -rw-r--r-- 1 root root 2.8K Jun 5 22:23 httpd-autoindex.conf
4 -rw-r--r-- 1 root root 1.8K Jun 5 22:23 httpd-dav.conf
4 -rw-r--r-- 1 root root 2.9K Jun 5 22:23 httpd-default.conf
4 -rw-r--r-- 1 root root 1.1K Jun 5 22:23 httpd-info.conf
8 -rw-r--r-- 1 root root 5.0K Jun 5 22:23 httpd-languages.conf
4 -rw-r--r-- 1 root root 1.4K Jun 5 22:23 httpd-manual.conf
8 -rw-r--r-- 1 root root 4.3K Jun 5 22:23 httpd-mpm.conf
4 -rw-r--r-- 1 root root 2.2K Jun 5 22:23 httpd-multilang-errordoc.conf
16 -rw-r--r-- 1 root root 13.0K Jun 5 22:23 httpd-ssl.conf
4 -rw-r--r-- 1 root root 694 Jun 5 22:23 httpd-userdir.conf
4 -rwxrwxrwx 1 1000 50 925 Jun 8 17:14 httpd-vhosts.conf
4 -rw-r--r-- 1 root root 3.1K Jun 5 22:23 proxy-html.conf
version: '3.7'
services:
db:
image: mariadb
restart: always
environment:
MYSQL_ROOT_PASSWORD: example
volumes:
- /DATA/sulu/mysql:/var/lib/mysql
adminer:
image: adminer
restart: always
ports:
- 8080:8080
web:
image: alpine:latest
build: ./apache
depends_on:
- db
restart: always
ports:
- 80:8080 #HOST:CONTAINER
volumes:
- /DATA/sulu/data:/var/www/localhost/htdocs
ERROR: for sf4_web_1 Cannot start service web: OCI runtime create failed: container_linux.go:345: starting container process caused "exec: \"/usr/local/apache2/htdocs\": permission denied": unknown
ERROR: for web Cannot start service web: OCI runtime create failed: container_linux.go:345: starting container process caused "exec: \"/usr/local/apache2/htdocs\": permission denied": unknown
ERROR: Encountered errors while bringing up the project.