forked from google/keytransparency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.override.yml
40 lines (34 loc) · 1.02 KB
/
docker-compose.override.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
# Development configuration
# docker-compose up will automatically find and apply this configuration
version: "3.2"
services:
db:
ports:
- "3306:3306"
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
prometheus:
image: gcr.io/key-transparency/prometheus:${TRAVIS_COMMIT}
build:
context: .
dockerfile: deploy/prometheus/Dockerfile
server:
image: gcr.io/key-transparency/keytransparency-server:${TRAVIS_COMMIT}
build:
context: .
dockerfile: ./cmd/keytransparency-server/Dockerfile
sequencer:
image: gcr.io/key-transparency/keytransparency-sequencer:${TRAVIS_COMMIT}
build:
context: .
dockerfile: ./cmd/keytransparency-sequencer/Dockerfile
init:
image: gcr.io/key-transparency/init:${TRAVIS_COMMIT}
build:
context: .
dockerfile: ./deploy/docker/init/Dockerfile
monitor:
image: gcr.io/key-transparency/keytransparency-monitor:${TRAVIS_COMMIT}
build:
context: .
dockerfile: ./cmd/keytransparency-monitor/Dockerfile