Commit 151b7de570d557e6fe3f7464f5d43195bd9c062c

Authored by Alexis Koralewski
1 parent 483e981c
Exists in dev

Add port configuration for phpmyadmin in docker-compose.yml

Showing 2 changed files with 3 additions and 1 deletions   Show diff stats
docker/.env-sample
... ... @@ -22,3 +22,5 @@ MYSQL_PYROS_PWD=DjangoPyros
22 22 PYROS_WEBSITE_PORT=8000
23 23 # Host name
24 24 HOST_NAME=localhost
  25 +# PORT PHPMYADMIN
  26 +PHPMYADMIN_PORT=8081
25 27 \ No newline at end of file
... ...
docker/docker-compose.yml
... ... @@ -81,7 +81,7 @@ services:
81 81 pyros-network:
82 82 ipv4_address: 172.19.0.4
83 83 ports:
84   - - 8081:80
  84 + - "${PHPMYADMIN_PORT:-81}:80"
85 85  
86 86 # declaring volumes
87 87 volumes:
... ...