-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
123 lines (109 loc) · 2.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
version: "3.7"
# YAML Anchors
x-deployment-env: &deployment-env
ENV: ${ENV:-development}
SG_ENV: ${SG_ENV:-development}
x-redis-client-env: &redis-client-env
REDIS_URL: ${REDIS_URL:-redis://redis:6379}
x-postgresdb-client-env: &postgresdb-client-env
PG_HOST: ${PG_HOST:-postgres}
PG_PORT: ${PG_PORT:-5432}
PG_DB: ${PG_DB:-place_development}
PG_USER: ${PG_USER:-postgres}
PG_PASSWORD: ${PG_PASSWORD:-password}
x-s3-client-env: &s3-client-env
AWS_REGION: ${AWS_REGION:-"us-east-1"}
AWS_KEY: ${AWS_KEY:-"root"}
AWS_SECRET: ${AWS_SECRET:-"password"}
AWS_S3_ENDPOINT: ${AWS_S3_ENDPOINT:-"http://minio:9000"}
AWS_S3_BUCKET: ${AWS_S3_BUCKET:-"placeos-drivers-build-service"}
x-build-api-env: &build-api-env
BUILD_API_HOST: ${BUILD_API_HOST:-build_service}
BUILD_API_PORT: ${BUILD_API_PORT:-3000}
services:
test: # Module coordinator
image: placeos/service-spec-runner:${CRYSTAL_VERSION:-latest}
volumes:
- ${PWD}/bin:/app/bin
- ${PWD}/coverage:/app/coverage
- ${PWD}/lib:/app/lib
- ${PWD}/shard.lock:/app/shard.lock
- ${PWD}/shard.yml:/app/shard.yml.input
- ${PWD}/shard.override.yml:/app/shard.override.yml
- ${PWD}/spec:/app/spec
- ${PWD}/src:/app/src
depends_on:
- redis
- postgres
- migrator
- build_service
security_opt:
- seccomp:unconfined
environment:
# Environment
GITHUB_ACTION: ${GITHUB_ACTION:-}
# Service Hosts
<<: [*redis-client-env, *postgresdb-client-env,*deployment-env, *build-api-env]
redis:
image: eqalpha/keydb
restart: always
hostname: redis
postgres:
hostname: postgres
image: postgres
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 30s
timeout: 30s
retries: 3
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: place_development
migrator:
build:
context: ${PWD}/spec/migration
container_name: migrator
depends_on:
postgres:
condition: service_healthy
environment:
GITHUB_ACTION: ${GITHUB_ACTION:-}
PG_DATABASE_URL: ${PG_DATABASE_URL:-postgresql://postgres:password@postgres:5432/place_development}
build_service:
image: placeos/build_service:nightly
restart: always
hostname: build_service
depends_on:
- minio
- testbucket
environment:
<<: *s3-client-env
minio:
image: minio/minio:latest
volumes:
- s3:/data
ports:
- 9000:9000
- 9090:9090
environment:
<< : *s3-client-env
MINIO_ROOT_USER: $AWS_KEY
MINIO_ROOT_PASSWORD: $AWS_SECRET
command: server /data --console-address ":9090"
testbucket:
image: minio/mc:latest
depends_on:
- minio
environment:
<< : *s3-client-env
entrypoint: >
sh -c '
sleep 3 &&
mc config host add s3 $AWS_S3_ENDPOINT $AWS_KEY $AWS_SECRET &&
mc mb -p s3/$AWS_S3_BUCKET &&
exit 0
'
volumes:
s3:
driver: local