This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/docker-compose.development.yml

13 lines
231 B
YAML

version: '2.2'
services:
mysql:
image: mariadb:10.3
container_name: mysql
restart: always
env_file:
- ./env/dev.database.env
volumes:
- /srv/devdb/data:/var/lib/mysql
ports:
- 3306:3306