Skip to content

Instantly share code, notes, and snippets.

@stevenquiroa
Created December 5, 2016 16:18
Show Gist options
  • Save stevenquiroa/b1fa37895cc7dc2fdfaee6d54a70e56f to your computer and use it in GitHub Desktop.
Save stevenquiroa/b1fa37895cc7dc2fdfaee6d54a70e56f to your computer and use it in GitHub Desktop.
Docke init
version: '2'
services:
db:
image: mysql:5.7
volumes:
- "./.data/db:/var/lib/mysql"
restart: always
environment:
MYSQL_ROOT_PASSWORD: wordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
build: .
# image: wordpress:latest
depends_on:
- db
volumes:
- "./wp-content:/var/www/html/wp-content"
- "./.log:/var/log/apache2"
links:
- db
ports:
- "9000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_PASSWORD: wordpress
FROM wordpress:latest
RUN echo "\n log_errors = on\n error_log = /var/log/apache2/php_err.log" > /usr/local/etc/php/conf.d/php_error.ini && touch /var/log/apache2/php_err.log && chown www-data:www-data /var/log/apache2/php_err.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment