mirror of
https://github.com/rasilon/ujetl.git
synced 2026-04-11 18:39:30 +00:00
23 lines
527 B
YAML
23 lines
527 B
YAML
# 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_tester:latest
|
|
build:
|
|
context: ../multistage
|
|
links:
|
|
- "testdb"
|
|
command: ["/wait_for_postgres", "/ujetl_entrypoint"]
|
|
|
|
|
|
|