Skip to content

Instantly share code, notes, and snippets.

@thanhtantran
Created January 26, 2022 05:09
Show Gist options
  • Select an option

  • Save thanhtantran/82d388f0b8fd8a94549466c9bb9725d5 to your computer and use it in GitHub Desktop.

Select an option

Save thanhtantran/82d388f0b8fd8a94549466c9bb9725d5 to your computer and use it in GitHub Desktop.
Wordpress simple deploy on docker stack
version: '3'
services:
db:
image: mariadb
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: wordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
image: wordpress:latest
ports:
- "8080:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
volumes:
db_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment