-
Notifications
You must be signed in to change notification settings - Fork 47
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
Error by using docker image 0.8.13 #681
Comments
Hi, Is it possible to have the |
Another things, in the |
I didn't reproduce this issue with the services:
fittrackee:
image: fittrackee/fittrackee:latest
container_name: fittrackee
environment:
- PUID=1000
- PGID=1000
- FLASK_APP=fittrackee
- FLASK_SKIP_DOTENV=1
- APP_SECRET_KEY="MYPWD"
- UPLOAD_FOLDER=/usr/src/app/uploads
- DATABASE_URL=postgresql://fittrackee:fittrackee@fittrackee-db:5432/fittrackee
user: 1000:1000
volumes:
- ./fittrackee-config/upload:/usr/src/app/uploads/uploads/
- ./fittrackee-config/logs:/usr/src/app/logs
ports:
- 127.0.0.1:5000:5000
depends_on:
fittrackee-db:
condition: service_started
command: sh docker-entrypoint.sh
restart: unless-stopped
+ post_start:
+ - command: chown -R fittrackee:fittrackee /usr/src/app/uploads /usr/src/app/logs
+ user: root
fittrackee-db:
image: postgres:17-alpine
container_name: fittrackee-db
environment:
- PUID=70
- PGID=70
- POSTGRES_USER=fittrackee
- POSTGRES_PASSWORD=fittrackee
- POSTGRES_DB=fittrackee
volumes:
- ./fittrackee-config/fittrackee-db:/var/lib/postgresql/data
ports:
- 127.0.0.1:5432:5432
restart: unless-stopped Docker and docker compose versions: $ docker --version
Docker version 27.3.1, build ce1223035a
$ docker-compose --version
Docker Compose version 2.31.0 For the statistics, I reproduced the issue (not related to the Docker image), I will investigate further. Thanks for the report. |
Seems to be corrected with latest 0.9.0 version 👍 |
I've got that error (i'm using docker image 0.8.13)
The text was updated successfully, but these errors were encountered: