19 lines
376 B
YAML
19 lines
376 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
ports:
|
|
- 8080:8080
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- database
|
|
database:
|
|
image: postgres:latest
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- ./database/init:/docker-entrypoint-initdb.d
|
|
restart: unless-stopped |