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

22 lines
379 B
YAML
Raw Permalink 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 23:45:52 -04:00
MARIADB_DATABASE: corner
MARIADB_USER: corner
MARIADB_PASSWORD: corner
2022-07-21 04:18:39 -04:00
ports:
- 3306:3306
2022-07-21 23:45:52 -04:00
# volumes:
# - ./docker-volume:/var/lib/mysql
2022-07-20 17:32:23 -04:00
adminer:
image: adminer
restart: always
ports:
2022-07-21 23:45:52 -04:00
- 8080:8080