Skip to content

Instantly share code, notes, and snippets.

@tututen
Created November 10, 2018 06:09
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 tututen/74d9f477237bf2f5c89a23a01dfa4175 to your computer and use it in GitHub Desktop.
Save tututen/74d9f477237bf2f5c89a23a01dfa4175 to your computer and use it in GitHub Desktop.
manzyun docker
version: '3'
services:
wordpress:
image: wordpress:latest
depends_on:
- db
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
db:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment