Created
April 26, 2021 09:10
-
-
Save Karnak19/c1c7eaffda8624abe65f544b5449751e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.1" | |
services: | |
db: | |
image: mariadb:latest | |
restart: always | |
ports: | |
- 3307:3306 | |
environment: | |
MYSQL_ROOT_PASSWORD: root | |
volumes: | |
- my-datavolume:/var/lib/mysql | |
adminer: | |
image: adminer | |
restart: always | |
ports: | |
- 8081:8080 | |
environment: | |
ADMINER_DESIGN: mvt | |
volumes: | |
my-datavolume: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment