docker-compose.yml 307 B

12345678910111213
  1. services:
  2. writefreely:
  3. build:
  4. context: .
  5. volumes:
  6. # bind the writefreely app data to a volume, enabling persistence
  7. - writefreely_data:/app/writefreely
  8. ports:
  9. # bind a host port to he container port (ie, HOST:CONTAINER)
  10. - 8088:8080
  11. volumes:
  12. writefreely_data: