mirror of
https://github.com/openvk/openvk
synced 2024-11-13 10:39:24 +03:00
Create docker-compose.yml
This commit is contained in:
parent
f15c6b5c96
commit
af585d73d2
1 changed files with 23 additions and 0 deletions
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal 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
|
Loading…
Reference in a new issue