This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
viscord/docker-compose.yml

17 lines
270 B
YAML

version: '3.1'
services:
db:
image: mariadb
restart: always
environment:
MARIADB_ROOT_PASSWORD: example
MARIADB_ROOT_HOST: '127.0.0.1'
ports:
- 3306:3306
adminer:
image: adminer
restart: always
ports:
- 8080:8080