| 12345678910111213 |
- services:
- writefreely:
- build:
- context: .
- volumes:
- # bind the writefreely app data to a volume, enabling persistence
- - writefreely_data:/app/writefreely
- ports:
- # bind a host port to he container port (ie, HOST:CONTAINER)
- - 8088:8080
- volumes:
- writefreely_data:
|