Remove hyphen from default SQL password

Which, in some cases, could cause problems. This solves #96
This commit is contained in:
Viktor Strate Kløvedal
2021-01-12 21:56:43 +01:00
committed by GitHub
parent 719dd633ce
commit 5b8660c5a9

View File

@@ -7,7 +7,7 @@ services:
environment:
- MYSQL_DATABASE=photoview
- MYSQL_USER=photoview
- MYSQL_PASSWORD=photo-secret
- MYSQL_PASSWORD=photosecret
- MYSQL_RANDOM_ROOT_PASSWORD=1
volumes:
- db_data:/var/lib/mysql
@@ -21,7 +21,7 @@ services:
- db
environment:
- MYSQL_URL=photoview:photo-secret@tcp(db)/photoview
- MYSQL_URL=photoview:photosecret@tcp(db)/photoview
- API_LISTEN_IP=photoview
- API_LISTEN_PORT=80
- PHOTO_CACHE=/app/cache