-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
68 lines (62 loc) · 1.35 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
version: '3.9'
services:
blackpearl:
container_name: blackpearl
image: fabianoflorentino/blackpearl:0.1-linux-arm64
hostname: blackpearl
build:
context: .
dockerfile: Dockerfile
ports:
- "9999:3000"
links:
- blackpearl-db
volumes:
- .:/app
env_file: .env
networks:
- dev
tty: true
stdin_open: true
blackpearl-db:
container_name: blackpearl-db
image: postgres:latest
hostname: blackpearl-db
volumes:
- data:/var/lib/postgresql/data
env_file: .env
networks:
- dev
blackpearl-db-initialize:
container_name: blackpearl-db-initialize
image: fabianoflorentino/blackpearl:0.1-linux-arm64
hostname: blackpearl-db-initialize
volumes:
- .:/app
env_file: .env
depends_on:
- blackpearl-db
networks:
- dev
entrypoint: ["/bin/sh", "-c", "bin/initdb"]
blackpearl-migration:
container_name: blackpearl-migration
image: fabianoflorentino/blackpearl:0.1-linux-arm64
hostname: blackpearl-migration
volumes:
- .:/app
env_file: .env
depends_on:
- blackpearl-db-initialize
- blackpearl-db
networks:
- dev
entrypoint: ["/bin/sh", "-c", "bin/migration"]
volumes:
data:
name: blackpearl
driver: local
networks:
dev:
name: blackpearl
driver: bridge