Ofc, as long as those current one are not in use.
Just nuke the contianer and start fresh. If you have run it via portainer, configure it as a stack (docker-compose), and run it that way.
Then you will be able to reconfigure and recrate as needed.
Example:
YAML:
version: "3.5"
services:
bw:
image: vaultwarden/server
container_name: "bw"
ports:
- "80:80"
- "3012:3012"
volumes:
- "/volume2/bitwarden:/data"
environment:
- "SMTP_PASSWORD=password" #add SMTP_XXXX variables to allow public user managment (account reset etc)
- "SMTP_USERNAME=username"
- "SMTP_SECURITY=starttls"
- "SMTP_PORT=587"
- "SMTP_FROM=from_email"
- "SMTP_HOST=smtp.gmail.com"
- "DOMAIN=https://yourdomain.com" #add your public domain name
- "TZ=Europe/Paris"
- "WEBSOCKET_ENABLED=true" #Enable this if you want to use the LiveSync feature on port 3012
- "SIGNUPS_ALLOWED=false" #true or false if you want to enable or disable public signups
- "ADMIN_TOKEN=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" #add custom string for logging into the admin UI
restart: always