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
Raw Normal View History

2022-07-20 17:32:23 -04:00
version: '3.1'
services:
db:
image: mariadb
restart: always
environment:
MARIADB_ROOT_PASSWORD: example
2022-07-21 04:18:39 -04:00
MARIADB_ROOT_HOST: '127.0.0.1'
ports:
- 3306:3306
2022-07-20 17:32:23 -04:00
adminer:
image: adminer
restart: always
ports:
- 8080:8080