Hmm so I did the change above, build the image locally and run it as this docker compose
services:
easyapointments:
image: easyappointments:v1.0.1
restart: always
ports:
- '80:80'
environment:
- DEBUG_MODE=TRUE
- DB_HOST=postgres
- DB_NAME=easyappointments
- DB_USERNAME=postgres
- DB_PASSWORD=secret
- MAIL_PROTOCOL=mail
- MAIL_SMTP_DEBUG=0
- MAIL_SMTP_AUTH=0
- MAIL_SMTP_USER=
- MAIL_SMTP_PASS=
- MAIL_SMTP_CRYPTO=tls
- MAIL_SMTP_PORT=587
- MAIL_FROM_NAME=Example
volumes:
- easyappointments:/var/www/html
postgres:
image: postgres:15
restart: always
ports:
- '5432:5432'
environment:
- POSTGRES_PASSWORD=secret
- POSTGRES_DB=easyappointments
- POSTGRES_USER=postgres
volumes:
- postgres:/var/lib/postgresql/data
volumes:
easyappointments:
postgres:
is this expected? Thanks for any info, and thank you for your great work, the app is awesome!