add wordpress

master
meftimes 2023-12-10 21:14:46 -05:00
parent 7ad2852d13
commit 4380080383
1 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,45 @@
version: '3.1'
services:
wordpress:
image: wordpress
container_name: wordpress
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.wordpress.entrypoints=websecure"
- "traefik.http.routers.wordpress.rule=Host(`party.meftimes.com`)"
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: meftimes
WORDPRESS_DB_PASSWORD: password_goes_here
WORDPRESS_DB_NAME: exampledb
volumes:
- wordpress:/var/www/html
networks:
- proxy
- backend
db:
image: mysql:5.7
restart: always
container_name: wordpress-db
environment:
MYSQL_DATABASE: exampledb
MYSQL_USER: meftimes
MYSQL_PASSWORD: password_goes_here
MYSQL_RANDOM_ROOT_PASSWORD: '1'
volumes:
- wordpress-db:/var/lib/mysql
networks:
- backend
volumes:
wordpress:
wordpress-db:
networks:
proxy:
external: true
backend:
external: true