-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
33 lines (31 loc) · 823 Bytes
/
compose.yaml
File metadata and controls
33 lines (31 loc) · 823 Bytes
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
services:
mysql:
image: 'mysql:latest'
environment:
- 'MYSQL_DATABASE=mydatabase'
- 'MYSQL_PASSWORD=secret'
- 'MYSQL_ROOT_PASSWORD=verysecret'
- 'MYSQL_USER=myuser'
ports:
- '3307:3306'
localstack:
container_name: "${LOCALSTACK_DOCKER_NAME-localstack-main}"
image: localstack/localstack:latest
ports:
- "127.0.0.1:4566:4566"
environment:
- SERVICES=s3
- DEFAULT_REGION=ap-northeast-2
- DEBUG=${DEBUG:-1}
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
- "./init-scripts:/etc/localstack/init/ready.d"
wiremock:
image: wiremock/wiremock:latest
container_name: "wiremock"
ports:
- "7777:8080"
volumes:
- "./init-scripts/api-stubs:/home/wiremock/mappings"
command:
- --verbose