-
Notifications
You must be signed in to change notification settings - Fork 3
/
codeship-services.yml
76 lines (76 loc) · 1.87 KB
/
codeship-services.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
wocky-build:
build:
context: .
dockerfile: Dockerfile.build
image: hippware/wocky:build
encrypted_args_file: codeship/build.env.encrypted
cached: true
volumes:
- ./tmp/artifacts:/artifacts
wocky-test:
build:
context: .
dockerfile: Dockerfile.build
image: hippware/wocky:build
encrypted_args_file: codeship/build.env.encrypted
cached: true
environment:
WOCKY_DB_HOST: "postgres"
REDIS_HOST: "redis"
REDIS_PORT: 6379
depends_on:
- postgres
- redis
wocky-migration-test:
build:
context: .
dockerfile: Dockerfile.migrationtest
image: hippware/wocky:migrationtest
cached: true
environment:
WOCKY_DB_HOST: "postgres"
WOCKY_DB_PASSWORD: "password"
depends_on:
- postgres
encrypted_env_file: codeship/migration_test.env.encrypted
postgres:
image: hippware/postgis-healthcheck:10-alpine
environment:
POSTGRES_PASSWORD: "password"
ports:
- "5432"
redis:
image: redis:5.0-alpine
ports:
- "6379"
wocky-rel:
build:
context: .
dockerfile: Dockerfile.release
image: 773488857071.dkr.ecr.us-west-2.amazonaws.com/hippware/wocky:latest
args:
RELEASE_NAME: wocky
cached: true
aws-dockercfg:
image: codeship/aws-ecr-dockercfg-generator
add_docker: true
encrypted_env_file: codeship/aws.env.encrypted
dockerlint:
image: redcoolbeans/dockerlint
volumes:
- ./Dockerfile.build:/Dockerfile.build
- ./Dockerfile.release:/Dockerfile.release
eks-deploy:
image: 773488857071.dkr.ecr.us-west-2.amazonaws.com/hippware/eks-deploy:latest
encrypted_env_file: codeship/aws.env.encrypted
volumes:
- k8s:/k8s
- wocky-deploy:/wocky-deploy
curl-ssl:
image: governmentpaas/curl-ssl
encrypted_env_file: codeship/circleci.env.encrypted
volumes:
- kick-circleci:/kick-circleci
waiter:
image: codeship/build-waiter
encrypted_env_file: codeship/waiter.cfg.encrypted