ujetl/docker/test_compose/docker-compose.yml

24 lines
525 B
YAML
Raw Normal View History

2019-06-17 12:53:31 +01:00
# This is a sample to help put the full application together
version: '3.3'
services:
testdb:
image: rasilon/ujetl_testdb:latest
build:
context: ../test_db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres
tests:
image: rasilon/ujetl_test:latest
build:
context: ../multistage
links:
- "testdb"
command: ["/wait_for_postgres", "/ujetl_entrypoint"]