-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (41 loc) · 988 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
version: '3.5'
services:
postgres:
container_name: postgres
image: postgres
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
POSTGRES_DB: ${POSTGRES_DB:-storage}
PGDATA: /data/postgres
volumes:
- postgres:/data/postgres
ports:
- "5432:5432"
networks:
- backend
restart: unless-stopped
api:
container_name: api
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
environment:
ENVIRONMENT: dev
POSTGRES_HOST: postgres
POSTGRES_PORT: ${POSTGRES_PORT:- 5432}
POSTGRES_USER: ${POSTGRES_USER:- postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:- postgres}
POSTGRES_DATABASE: ${POSTGRES_DATABASE:- storage}
JWT_SECRET: ${JWT_SECRET:- secret}
restart: unless-stopped
depends_on:
- postgres
networks:
- backend
networks:
backend:
volumes:
postgres: