Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
version : "3"
services:
web:
build:
context: .
dockerfile: Dockerfile
working_dir: /user/src/app
volumes:
- .:/usr/src/app
ports:
- "8085:8085"
depends_on:
- db
db:
image: mysql
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: apple-db
MYSQL_USER: ghanim
MYSQL_PASSWORD: test
MYSQL_ROOT_PASSWORD: test
phpmyadmin:
image: phpmyadmin/phpmyadmin
links:
- db:db
ports:
- 8080:80
environment:
MYSQL_USER: ghanim
MYSQL_PASSWORD: test
MYSQL_ROOT_PASSWORD: test