Skip to content

Instantly share code, notes, and snippets.

@zanetaylor
Created November 8, 2022 02:38
Show Gist options
  • Save zanetaylor/b7713fecfecfe1f5f4e61795d93beab2 to your computer and use it in GitHub Desktop.
Save zanetaylor/b7713fecfecfe1f5f4e61795d93beab2 to your computer and use it in GitHub Desktop.
version: "3"
services:
web:
image: "php:7.4-apache"
restart: 'always'
depends_on:
- mariadb
restart: 'always'
ports:
- '8080:80'
links:
- mariadb
volumes:
- ./app:/var/www/html
mariadb:
image: "mariadb:10.5"
restart: 'always'
volumes:
- mariadb:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: "password"
MYSQL_DATABASE: "database"
MYSQL_USER: "dbuser"
MYSQL_PASSWORD: "dbuserpass"
ports:
- '3306:3306'
volumes:
mariadb:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment