-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
37 lines (33 loc) · 849 Bytes
/
Copy pathcompose.yaml
File metadata and controls
37 lines (33 loc) · 849 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
version: '3.8'
services:
alvis:
image: prasennavenkatesh/homeauto
#environment:
# Uncomment the following if you need to connect to a local instance of a db server
#- CONTAINER=host
#- SPRING_DATASOURCE_URL=jdbc:mysql://host.docker.internal:3306/<db_name>?useSSL=false&allowPublicKeyRetrieval=true
#- SPRING_DATASOURCE_USERNAME=root
#- SPRING_DATASOURCE_PASSWORD=password
ports:
- "8080:8080"
depends_on:
# Comment out '-db' if you are connecting to a local db server
- db
- ui
networks:
- test
db:
image: arm64v8/mysql:oracle
networks:
- test
environment:
- MYSQL_DATABASE=myapp
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
ui:
image: prasennavenkatesh/homeauto-ui
ports:
- "80:80"
networks:
- test
networks:
test: