Skip to content

Commit 7a803d7

Browse files
committed
merge remote master branch
2 parents 6e673bc + 4124cb9 commit 7a803d7

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# Use a more recent base image
21
FROM ubuntu:20.04
32

43
# Metadata as defined at http://label-schema.org

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ run:
6868
@echo " THE PASSWORD FOR ${bold}$(MYSQL_USER)${normal} IS ${bold}$(MYSQL_PASSWORD)${normal};"
6969
@echo ''
7070
@echo " docker exec -it apache_db /bin/bash \n \
71-
mysql -p \n \
71+
mysql -p '$(MYSQL_ROOT_PASSWORD)' \n \
7272
GRANT ALL PRIVILEGES ON * . * TO '$(MYSQL_USER)'@'%' with grant option; \n"
7373

7474
docker-compose -f $(COMPOSE_FILE) up -d --remove-orphans

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,16 @@ Open `docker-compose.local.yml` and review [this line](https://github.com/htmlgr
7070
### Windows
7171

7272
```bash
73-
~ git clone https://github.com/htmlgraphic/Apache.git ~/Docker/Apache; cd ~/Docker/Apache
74-
~ copy .env.example .env
75-
~ docker-compose -f docker-compose.local.yml up -d
73+
> git clone git@github.com:htmlgraphic/Apache.git ~/Docker/Apache; cd ~/Docker/Apache
74+
> copy .env.example .env
75+
> docker-compose -f docker-compose.local.yml up -d
7676
```
7777

7878
> Optional, are you having problems on Windows? Disable Firewall
7979
8080
```bash
81-
~ netsh advfirewall show currentprofile
82-
~ netsh advfirewall set allprofiles state off
81+
> netsh advfirewall show currentprofile
82+
> netsh advfirewall set allprofiles state off
8383
```
8484

8585

docker-compose.local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
restart: unless-stopped
66
container_name: apache
77
volumes:
8-
- '~/SITES/docker:/data' # Preferred local working dir
8+
- '~/SITES/docker:/data' # <- Change to preferred local working dir
99
#- '/c/Users/southpark/docker:/data'
1010
links:
1111
- 'db:mysql'

0 commit comments

Comments
 (0)