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.
30 lines
575 B
30 lines
575 B
version: "3"
|
|
services:
|
|
web:
|
|
image: robjloranger/writefreely:v0.10.0
|
|
volumes:
|
|
- ./keys:/home/writefreely/keys
|
|
- ./config.ini:/home/writefreely/config.ini
|
|
ports:
|
|
- "8080:8080"
|
|
networks:
|
|
- writefreely
|
|
depends_on:
|
|
- db
|
|
restart: unless-stopped
|
|
db:
|
|
image: "mariadb:latest"
|
|
volumes:
|
|
- db-data:/var/lib/mysql/data
|
|
networks:
|
|
- writefreely
|
|
environment:
|
|
- MYSQL_DATABASE=writefreely
|
|
- MYSQL_ROOT_PASSWORD=changeme
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
db-data:
|
|
|
|
networks:
|
|
writefreely: |