How to run it
docker run -p8081:80 -v conf:/var/www/html/conf valerioneri/vfront
Simple docker compose for MySQL
version: '3'
services:
# Database
db:
image: mysql:5.7
volumes:
- /opt/OasiDB/mysqlData:/var/lib/mysql
restart: always
ports:
- '3306:3306'
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: FirstDB
# phpmyadmin
vfront:
depends_on:
- db
image: valerioneri/vfront
volumes:
- /vfron/conf:/var/www/conf
restart: always
ports:
- '8081:80'
Content type
Image
Digest
Size
161.9 MB
Last updated
over 6 years ago
docker pull valerioneri/vfront