mirror of
https://github.com/cupcakearmy/liquet.git
synced 2024-10-31 23:54:12 +01:00
25 lines
420 B
YAML
Executable File
25 lines
420 B
YAML
Executable File
version: '3'
|
|
|
|
services:
|
|
wp:
|
|
image: wordpress:5-apache
|
|
volumes:
|
|
- ./data/wp:/var/www/html
|
|
- ./liquet:/var/www/html/wp-content/themes/liquet:ro
|
|
ports:
|
|
- 80:80
|
|
env_file: .env
|
|
|
|
db:
|
|
image: mariadb:10.3
|
|
restart: always
|
|
volumes:
|
|
- ./data/db:/var/lib/mysql
|
|
env_file: .env
|
|
|
|
|
|
# adminer:
|
|
# image: adminer
|
|
# restart: always
|
|
# ports:
|
|
# - 8080:8080 |