-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
51 lines (47 loc) · 965 Bytes
/
docker-compose.override.yml
File metadata and controls
51 lines (47 loc) · 965 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
# Avoid Docker picking a subnet range that conflicts with HyperV VMs & F5 VPN
networks:
default:
ipam:
driver: default
config:
- subnet: 10.0.44.0/24
services:
db:
container_name: db
restart: always
image: mysql:8.0.40
ports:
- "4406:3306"
volumes:
- mysqldata:/var/lib/mysql
env_file: .env
healthcheck:
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost", "-uroot", "-p$MYSQL_ROOT_PASSWORD"]
timeout: 180s
interval: 10s
retries: 10
web:
links:
- db:db
depends_on:
db:
condition: service_healthy
volumes:
- ./:/usr/local/projects/temmpo/lib/test/src/temmpo/
platform: linux/amd64
e2e:
image: cypress/included:15.5.0
working_dir: /e2e/
links:
# - nginx:nginx
- web:web
depends_on:
- db
- web
# - nginx
env_file: .env
volumes:
- ./:/e2e
volumes:
mysqldata: