-
-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker container fails to start #51
Comments
Hi there, first of all, the website is up again. I did not know it was down. Could you please give me some more information:
Thanks |
Apologies for not including that initially. docker-compose.yml version: '3'
services:
picsur:
image: ghcr.io/caramelfur/picsur:latest
container_name: picsur
ports:
- '8080:8080'
environment:
PICSUR_HOST: '0.0.0.0'
PICSUR_PORT: 8080
PICSUR_DB_HOST: picsur_postgres
PICSUR_DB_PORT: 5432
PICSUR_DB_USERNAME: picsur
PICSUR_DB_PASSWORD: picsur
PICSUR_DB_DATABASE: picsur
## The default username is admin, this is not modifyable
PICSUR_ADMIN_PASSWORD: picsur
## Optional, random secret will be generated if not set
# PICSUR_JWT_SECRET: CHANGE_ME
# PICSUR_JWT_EXPIRY: 7d
## Maximum accepted size for uploads in bytes
PICSUR_MAX_FILE_SIZE: 128000000
## No need to touch this, unless you use a custom frontend
PICSUR_STATIC_FRONTEND_ROOT: "/picsur/frontend/dist"
## Warning: Verbose mode might log sensitive data
PICSUR_VERBOSE: "true"
restart: unless-stopped
picsur_postgres:
image: postgres:14-alpine
container_name: picsur_postgres
environment:
POSTGRES_DB: picsur
POSTGRES_PASSWORD: picsur
POSTGRES_USER: picsur
restart: unless-stopped
volumes:
- picsur-data:/var/lib/postgresql/data
volumes:
picsur-data: OS: macOS Ventura 13.4.1 (Apple Silicon) Let me know if there's anything else I can provide that would be of help. Cheers! |
Same issue here! Switching to 0.5.1 it is working fine. |
@apiening could you also provide your system specs and config please? I can't seem to reproduce the error myself, so hopefully I can use that to find similarities. |
By the way. Is there any guideline to make a custom frontend here? I wanna change logo if possible and favicon |
@Mcicool No there is no guide for making a custom frontend, the purpose of this option is to allow you write your whole own frontend from scratch, based upon the api spec provided. You could rebuild the exisiting frontend into this, but there won't be a guide for this, since this not really what the option was meant for. |
Got it. Thank you. Tho the option to just change the logo and favicon would be cool in future. |
@Mcicool Ah sorry, but that has already been a feature request in the past, it however won't be something that will be added. Picsur is just not intended to serve as a whitelabel service. |
Have the same issue. I switched to 0.5.1 (as @apiening ) mentioned and it runs now. |
Trying the same thing on Unraid 6.12.4 without any success so far. (tried latest, as well als 0.5.1) I would really appreciate that! |
Hi there,
I was trying to just spin up a local container to give the project a spin, as the website currently is down, but it fails getting the picsur image fails to reach a running status. It continuously logs the following error:
I am using the docker-compose example mentioned in the README, uncommenting the environment vars.
The text was updated successfully, but these errors were encountered: