Created
November 14, 2019 19:41
-
-
Save FraGoTe/4dbf346f3b9af98a38564bea1e0cb75e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use root/example as user/password credentials | |
# docker-compose up | |
version: '3.1' | |
services: | |
adminer: | |
image: adminer | |
restart: always | |
ports: | |
- 8099:8080 | |
db: | |
image: mysql:5.6 | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: db_data_123 | |
ports: | |
- 3307:3306 | |
php72_apache: | |
build: | |
context: ./.docker | |
volumes: | |
- .apache/:/etc/apache2/v-host/ | |
- .:/var/www | |
ports: | |
- 8030:80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment