Created
August 24, 2019 09:19
-
-
Save gcdd1993/5df49faee3b2c0ca75794816472e792b to your computer and use it in GitHub Desktop.
docker-compose for workpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
wordpress: | |
image: wordpress | |
ports: | |
- 8080:80 | |
environment: | |
WORDPRESS_DB_HOST: mysql | |
WORDPRESS_DB_PASSWORD: root | |
networks: | |
- my-bridge | |
mysql: | |
image: mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: root | |
MYSQL_DATABASE: wordpress | |
volumes: | |
- mysql-data:/var/lib/mysql | |
networks: | |
- my-bridge | |
volumes: | |
mysql-data: | |
networks: | |
my-bridge: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment