14 lines
231 B
YAML
14 lines
231 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
web:
|
||
|
image: nginx
|
||
|
db:
|
||
|
image: mysql
|
||
|
ports:
|
||
|
- "3310:3306"
|
||
|
environment:
|
||
|
- MYSQL_ROOT_PASSWORD=password
|
||
|
- MYSQL_USER=user
|
||
|
- MYSQL_PASSWORD=password
|
||
|
- MYSQL_DATABASE=demodb
|