Skip to content

Instantly share code, notes, and snippets.

@FraGoTe
Created November 14, 2019 19:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FraGoTe/4dbf346f3b9af98a38564bea1e0cb75e to your computer and use it in GitHub Desktop.
Save FraGoTe/4dbf346f3b9af98a38564bea1e0cb75e to your computer and use it in GitHub Desktop.
# 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