You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
362 B
YAML
16 lines
362 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
rxnav-db:
|
|
image: mariadb:10.4
|
|
restart: "no"
|
|
expose:
|
|
- "3306"
|
|
volumes:
|
|
- ./RxNav-In-a-box/rxnav-in-a-box/mysql:/docker-entrypoint-initdb.d:ro
|
|
- ./RxNav-In-a-box/rxnav_data:/
|
|
environment:
|
|
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
|
|
MYSQL_USER: ${MYSQL_USER}
|
|
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
|