auth-api/docker-compose.yml

46 lines
979 B
YAML
Raw Normal View History

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
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=auth
ports:
- 5432:5432
db-migrations:
build:
context: .
dockerfile: Dockerfile.migrations
2021-06-22 22:52:48 +02:00
environment:
- DATABASE_URL=postgres://postgres:postgres@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
auth-api:
2021-06-22 22:52:48 +02:00
build: .
environment:
- ADMIN_API_KEY=hihi
- DATABASE_URL=postgres://postgres:postgres@postgres:5432/auth?sslmode=disable
- 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:
- auth-api