Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 270 Bytes

services.md

File metadata and controls

20 lines (16 loc) · 270 Bytes

Docker / Services

Each preferably with minimal image and data volume.

mysql:
  image: mysql
  volumes:
    - /var/lib/mysql

postgres:
  image: postgres:alpine
  volumes:
    - /var/lib/postgresql/data

redis:
  image: redis:alpine
  volumes:
    - /data