-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
43 lines (43 loc) · 1.05 KB
/
docker-compose.yaml
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
version: '3.3'
networks:
service_network:
name: backend
#driver: custom-driver
# driver_opts:
# custom-driver
services:
db:
image: mysql:5
restart: always
command: mysqld --default-authentication-plugin=mysql_native_password
environment:
MYSQL_DATABASE: 'PiDash'
# So you don't have to use root, but you can if you like
MYSQL_USER: "pidashservice"
# You can use whatever password you like
MYSQL_PASSWORD: 'password1234@!'
# Password for root access
MYSQL_ROOT_PASSWORD: 'password1234@!'
#default-authentication-plugin: mysql_native_password
networks:
- service_network
# ports:
# <Port exposed> : <MySQL Port running inside container>
# - '3307:3306'
expose:
# Opens port 3306 on the container
- '3306'
# Where our data will be persisted
volumes:
- my-db:/var/lib/mysql
pidash:
build: .
ports:
- '4656:4656'
expose:
- '4656'
networks:
- service_network
# Names our volume
volumes:
my-db: