Skip to content

Instantly share code, notes, and snippets.

@ralfting
Created May 29, 2019 13:28
Show Gist options
  • Select an option

  • Save ralfting/fa6c1666948797b8d73e955716e2e95f to your computer and use it in GitHub Desktop.

Select an option

Save ralfting/fa6c1666948797b8d73e955716e2e95f to your computer and use it in GitHub Desktop.
version: '3'
services:
apache:
image: 'php:7.2-apache'
container_name: php
restart: always
ports:
- '80:80'
volumes:
- ./html:/var/www/html
depends_on:
- mysqldb
links:
- mysqldb
mysqldb:
container_name: mysqlASW
image: mysql:5.7
restart: always
ports:
- '3307:3306'
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=laraadmin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment