mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-01 19:03:14 +03:00
23 lines
359 B
YAML
23 lines
359 B
YAML
version: '3'
|
|
services:
|
|
app:
|
|
container_name: app_test
|
|
build:
|
|
context: ./.docker
|
|
volumes:
|
|
- ./:/code
|
|
env_file:
|
|
- ./.env
|
|
environment:
|
|
- BRANCH=${BRANCH}
|
|
links:
|
|
- db
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: mysql:5.7
|
|
environment:
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|
|
ports:
|
|
- "3306:3306"
|