How to create initial admin account #275
-
So I'm running the "production" version locally via docker compose and I cant seem to figure out how to create the initial admin account. I create a regular use account, but any time I browse to /admin it redirects back to the home page. We wont have the ability to send out email, so I've removed that part from the reference docker-compose.yml in the project. my docker-compose.yml: version: '3.1'
services:
thunderdome:
image: stevenweathers/thunderdome-planning-poker:latest
restart: always
ports:
- "8080:8080"
depends_on:
- db
links:
- db
networks:
- asgard
environment:
APP_DOMAIN: ".127.0.0.1"
COOKIE_SECURE: "false"
DB_NAME: thunderdome
DB_USER: thor
DB_PASS: odinson
volumes:
- ./etc/:/etc/thunderdome
db:
image: postgres:13.2
restart: always
environment:
POSTGRES_DB: thunderdome
POSTGRES_USER: thor
POSTGRES_PASSWORD: odinson
ports:
- 5432:5432
volumes:
- thunderdome_data:/var/lib/postgresql/data
networks:
- asgard
networks:
asgard:
volumes:
thunderdome_data: |
Beta Was this translation helpful? Give feedback.
Answered by
StevenWeathers
May 11, 2022
Replies: 1 comment
-
Great question!, it seems the config value got lost along the way in the documentation so I have updated the docs to explain how to set the first Admin user. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
StevenWeathers
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great question!, it seems the config value got lost along the way in the documentation so I have updated the docs to explain how to set the first Admin user.