mirror of https://github.com/writeas/writefreely
A focused writing and publishing space.
https://write.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
521 B
25 lines
521 B
services:
|
|
app:
|
|
image: writefreely
|
|
container_name: writefreely
|
|
volumes:
|
|
- ./data:/data
|
|
ports:
|
|
- 127.0.0.1:8080:8080
|
|
depends_on:
|
|
- db
|
|
restart: unless-stopped
|
|
|
|
db:
|
|
image: lscr.io/linuxserver/mariadb
|
|
container_name: writefreely-mariadb
|
|
volumes:
|
|
- ./db:/config
|
|
environment:
|
|
- PUID=65534
|
|
- PGID=65534
|
|
- TZ=Etc/UTC
|
|
- MYSQL_DATABASE=writefreely
|
|
- MYSQL_USER=writefreely
|
|
- MYSQL_PASSWORD=P@ssw0rd
|
|
restart: unless-stopped
|
|
|