2021-06-22 22:52:48 +02:00
|
|
|
version: '3.9'
|
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
2022-02-18 19:27:02 +01:00
|
|
|
image: postgres:14.2-alpine3.15
|
2021-06-22 22:52:48 +02:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=postgres
|
2022-02-27 19:29:56 +01:00
|
|
|
- POSTGRES_PASSWORD=prutt
|
2021-06-22 22:52:48 +02:00
|
|
|
- POSTGRES_DB=auth
|
|
|
|
|
|
|
|
db-migrations:
|
2022-02-14 00:04:55 +01:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.migrations
|
2021-06-22 22:52:48 +02:00
|
|
|
environment:
|
2022-02-27 19:29:56 +01:00
|
|
|
- DATABASE_URL=postgres://postgres:prutt@postgres:5432/auth?sslmode=disable
|
2022-01-22 15:51:14 +01:00
|
|
|
command: ["--wait", "up"]
|
2021-06-22 22:52:48 +02:00
|
|
|
profiles: ["migrations"]
|
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
|
2021-09-04 16:24:48 +02:00
|
|
|
auth-api:
|
2021-06-22 22:52:48 +02:00
|
|
|
build: .
|
|
|
|
environment:
|
|
|
|
- ADMIN_API_KEY=hihi
|
2022-02-27 19:29:56 +01:00
|
|
|
- DATABASE_URL=postgres://postgres:prutt@postgres:5432/auth?sslmode=disable
|
2021-06-22 22:52:48 +02:00
|
|
|
- JWT_SHARED_SECRET=hihi
|
|
|
|
- WEB_BIND_HOST=:4000
|
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
ports:
|
2021-06-23 22:59:27 +02:00
|
|
|
- 4000:4000
|
|
|
|
|
|
|
|
tests:
|
|
|
|
build:
|
|
|
|
context: tests
|
|
|
|
environment:
|
|
|
|
- ADMIN_API_KEY=hihi
|
2022-02-14 00:13:20 +01:00
|
|
|
- AUTH_URL=http://auth-api:4000
|
2021-06-23 22:59:27 +02:00
|
|
|
- JWT_SHARED_SECRET=hihi
|
|
|
|
profiles: ["tests"]
|
|
|
|
depends_on:
|
2021-09-04 16:24:48 +02:00
|
|
|
- auth-api
|