Skip to content

Commit 001bbaf

Browse files
committed
Webserver: Use port 8080 on the host
This avoids conflicts with some existing local webserver running on port 80.
1 parent 7b48f0b commit 001bbaf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Docker configuration to run a Symfony app.
55
docker-compose up -d
66
docker-compose exec php composer install
77

8-
You can now visit http://localhost and see the default Symfony page.
8+
You can now visit http://localhost:8080 and you will see the default Symfony page.
99

1010
## Useful commands
1111

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424
volumes:
2525
- ./docker/nginx/app.conf:/etc/nginx/conf.d/default.conf:ro
2626
ports:
27-
- 80:80
27+
- 8080:80
2828

2929
mysql:
3030
image: mysql:5.7

0 commit comments

Comments
 (0)