mirror of
https://github.com/glimpse-app/server.git
synced 2025-04-02 10:52:45 -04:00
25 lines
440 B
YAML
25 lines
440 B
YAML
services:
|
|
|
|
api:
|
|
build: .
|
|
# image: glimpse-server:latest
|
|
restart: always
|
|
ports:
|
|
- 8080:8080
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
|
|
db:
|
|
image: postgres:latest
|
|
restart: always
|
|
user: postgres
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
POSTGRES_PASSWORD: postgresql
|
|
healthcheck:
|
|
test: [CMD-SHELL, pg_isready]
|
|
interval: 1s
|
|
timeout: 5s
|
|
retries: 10
|