Fix: Easyappointments

This commit is contained in:
peaklabs-dev
2024-10-07 15:11:40 +02:00
parent cdedf3b25c
commit a2cfa1423d
2 changed files with 4 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
# documentation: https://easyappointments.org/ # documentation: https://easyappointments.org/
# slogan: SCHEDULE ANYTHING. - Let's start with easy! Get the best free online appointment scheduler on your server, today. # slogan: Schedule Anything. Let's start with easy! Get the best free online appointment scheduler on your server, today.
# tags: calendar, scheduling, database # tags: calendar, scheduling, database
# logo: svgs/easyappointments.png # logo: svgs/easyappointments.png
# port: 80 # port: 80
@@ -7,7 +7,6 @@
services: services:
easyappointments: easyappointments:
image: alextselegidis/easyappointments:latest image: alextselegidis/easyappointments:latest
restart: unless-stopped
environment: environment:
- SERVICE_FQDN_EASYAPPOINTMENTS_80 - SERVICE_FQDN_EASYAPPOINTMENTS_80
- BASE_URL=${SERVICE_FQDN_EASYAPPOINTMENTS} - BASE_URL=${SERVICE_FQDN_EASYAPPOINTMENTS}
@@ -23,10 +22,9 @@ services:
timeout: 10s timeout: 10s
retries: 30 retries: 30
mysql: mysql:
image: 'mysql:8.0' image: mysql:8
restart: unless-stopped
volumes: volumes:
- './docker/mysql:/var/lib/mysql' - easyappointments-mysql-data:/var/lib/mysql
environment: environment:
- MYSQL_ROOT_PASSWORD=${SERVICE_PASSWORD_EASYAPPOINTMENTS} - MYSQL_ROOT_PASSWORD=${SERVICE_PASSWORD_EASYAPPOINTMENTS}
- MYSQL_DATABASE=easyappointments - MYSQL_DATABASE=easyappointments

File diff suppressed because one or more lines are too long