Skip to content
Snippets Groups Projects
Commit eef4fe91 authored by Laurent Louis's avatar Laurent Louis
Browse files

TP3 partie Docker

parent 92cc2761
No related branches found
No related tags found
No related merge requests found
services:
db:
# We use a mariadb image which supports both amd64 & arm64 architecture
image: mysql
# If you really want to use MySQL, uncomment the following line
#image: mysql:8.0.27
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
image: wordpress:latest
ports:
- "80:80"
environment:
WORDPRESS_DB_HOST: db
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DB_NAME: wordpress
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment