forked from hashicorp/waypoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
54 lines (48 loc) · 1.39 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
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
version: "3"
services:
pebble:
image: docker.mirror.hashicorp.services/letsencrypt/pebble
command: pebble
ports:
- 14000:14000 # ACME port
- 15000:15000 # Management port
environment:
- PEBBLE_VA_NOSLEEP=1
- PEBBLE_VA_ALWAYS_VALID=1
localstack:
image: docker.mirror.hashicorp.services/localstack/localstack
ports:
- "4566-4599:4566-4599"
- "${PORT_WEB_UI-8080}:${PORT_WEB_UI-8080}"
environment:
- SERVICES=${SERVICES- }
- DEBUG=${DEBUG- }
- DATA_DIR=${DATA_DIR- }
- PORT_WEB_UI=${PORT_WEB_UI- }
- LAMBDA_EXECUTOR=${LAMBDA_EXECUTOR- }
- KINESIS_ERROR_PROBABILITY=${KINESIS_ERROR_PROBABILITY- }
- LAMBDA_EXECUTOR=local
- HOST_TMP_FOLDER=${TMPDIR}
volumes:
- "${PWD}/tmp/localstack:/tmp/localstack"
postgres:
image: "docker.mirror.hashicorp.services/postgres:12.3"
ports:
- "5432:5432"
environment:
- POSTGRES_DB=noop
- POSTGRES_PASSWORD=postgres
vault:
image: docker.mirror.hashicorp.services/vault
ports:
- 8200:8200
command: vault server -dev -dev-root-token-id=hznroot
environment:
- VAULT_DEV_LISTEN_ADDRESS=0.0.0.0:8200
consul:
image: docker.mirror.hashicorp.services/consul
ports:
- 8500:8500
command: consul agent -dev -client=0.0.0.0