Fix admin user creation (#472)

add ADMIN_USER, ADMIN_PASSWORD and ADMIN_EMAIL
This commit is contained in:
masavini 2022-09-20 14:18:25 +02:00 committed by GitHub
parent cba2ed75ed
commit 25eaa35758
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -18,6 +18,10 @@ services:
context: . context: .
dockerfile: ./Dockerfile-dev dockerfile: ./Dockerfile-dev
image: mediacms/mediacms-dev:latest image: mediacms/mediacms-dev:latest
environment:
ADMIN_USER: 'admin'
ADMIN_PASSWORD: 'admin'
ADMIN_EMAIL: 'admin@localhost'
ports: ports:
- "80:80" - "80:80"
volumes: volumes:

View File

@ -54,6 +54,13 @@ docker-compose -f docker-compose-dev.yaml build
docker-compose -f docker-compose-dev.yaml up docker-compose -f docker-compose-dev.yaml up
``` ```
An `admin` user is created during the installation process. Its attributes are defined in `docker-compose-dev.yaml`:
```
ADMIN_USER: 'admin'
ADMIN_PASSWORD: 'admin'
ADMIN_EMAIL: 'admin@localhost'
```
### Frontend application changes ### Frontend application changes
Eg change `frontend/src/static/js/pages/HomePage.tsx` , dev application refreshes in a number of seconds (hot reloading) and I see the changes, once I'm happy I can run Eg change `frontend/src/static/js/pages/HomePage.tsx` , dev application refreshes in a number of seconds (hot reloading) and I see the changes, once I'm happy I can run