Add usage docs (#7)

This commit is contained in:
Luke Tainton
2022-05-14 10:09:34 +01:00
committed by GitHub
parent ad1d5d50b1
commit ba5adbf290
2 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
---
version: "3"
services:
db:
image: mariadb:10.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MARIADB_RANDOM_ROOT_PASSWORD: yes
MARIADB_DATABASE: hesk
MARIADB_USER: hesk
# Please change the password before deploying.
MARIADB_PASSWORD: hesk
wordpress:
depends_on:
- db
image: ghcr.io/luketainton/hesk:latest
ports:
- "80:80"
restart: always
volumes:
db_data: {}
...