this changes the Dockerfile a bit to work with the current version 0.10.0 of writefreely, and removes the docker-setup script for now. Kind of a work in progress but wanted to share with those interested.
16 lines
No EOL
351 B
YAML
16 lines
No EOL
351 B
YAML
version: "3"
|
|
services:
|
|
web:
|
|
image: robjloranger/writefreely:v0.10.0
|
|
volumes:
|
|
- ./keys:/home/writefreely/keys
|
|
- ./config.ini:/home/writefreely/config.ini
|
|
- ./writefreely.db:/home/writefreely/writefreely.db
|
|
ports:
|
|
- "8080:8080"
|
|
networks:
|
|
- writefreely
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
writefreely: |