22 lines
No EOL
437 B
YAML
22 lines
No EOL
437 B
YAML
version: '3'
|
|
services:
|
|
wildfly:
|
|
build: ./docker/wildfly
|
|
image: my-wildfly:latest
|
|
ports:
|
|
- "8080:8080"
|
|
- "9990:9990"
|
|
links:
|
|
- mysql
|
|
mysql:
|
|
image: mysql:5.7
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
restart: always
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: example
|
|
MYSQL_DATABASE: db_movie
|
|
adminer:
|
|
image: adminer
|
|
restart: always
|
|
ports:
|
|
- 7080:8080 |