13 lines
203 B
YAML
13 lines
203 B
YAML
version: '3'
|
|
|
|
services:
|
|
migrate:
|
|
build: .
|
|
entrypoint: ./taskcafe migrate
|
|
volumes:
|
|
- ./migrations:/root/migrations
|
|
depends_on:
|
|
- postgres
|
|
networks:
|
|
- taskcafe-test
|