Create docker-compose.yml

This commit is contained in:
samukhin 2021-05-16 01:22:28 +03:00 committed by GitHub
parent f15c6b5c96
commit af585d73d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
docker-compose.yml Normal file
View file

@ -0,0 +1,23 @@
version: '3.1'
services:
db:
build: .
restart: always
privileged: true
ports:
- 8888:80
phpmyadmin:
image: phpmyadmin:5
restart: always
ports:
- 8080:80
environment:
- PMA_ARBITRARY=1
adminer:
image: adminer:4
restart: always
ports:
- 7777:8080