You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.3 KiB

services:
databases.softwareshinobi.com-server:
container_name: databases.softwareshinobi.com-server
image: softwareshinobi/databases.softwareshinobi.com:server
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
ports:
- 3306:3306
volumes:
- /tmp/volumes/academy/database:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: aggiepride
MYSQL_DATABASE: sandbox
MYSQL_USER: sandbox
MYSQL_PASSWORD: sandbox
databases.softwareshinobi.com-browser:
container_name: databases.softwareshinobi.com-browser
image: beeyev/phpmyadmin-lightweight
restart: unless-stopped
depends_on:
- databases.softwareshinobi.com-server
ports:
- 3380:80
environment:
PMA_HOST: databases.softwareshinobi.com-server
MYSQL_ROOT_PASSWORD: aggiepride
databases.softwareshinobi.com-docs:
container_name: databases.softwareshinobi.com-docs
image: softwareshinobi/databases.softwareshinobi.com:docs
build:
context: docs
dockerfile: Dockerfile
ports:
- 3388:80