fix: update docker-compose.example.yml to use correct image reference

Signed-off-by: Nabeel Shahzad <nabeelio@users.noreply.github.com>
This commit is contained in:
Nabeel Shahzad 2025-08-14 13:47:02 -05:00
parent 9e7652e3bd
commit 81a8d29e57
No known key found for this signature in database

View File

@ -4,7 +4,7 @@ services:
app:
container_name: phpvms-app
user: "${WWWUSER:-1000}:${WWWGROUP:-1000}"
image: phpvms:app
image: ghcr.io/phpvms/phpvms:main
build:
context: .
args:
@ -30,7 +30,7 @@ services:
task:
container_name: phpvms-task
user: "${WWWUSER:-1000}:${WWWGROUP:-1000}"
image: phpvms:app
image: ghcr.io/phpvms/phpvms:main
restart: unless-stopped
command: ["php", "/var/www/html/artisan", "schedule:work"]
environment:
@ -50,7 +50,7 @@ services:
queue:
container_name: phpvms-queue
user: "${WWWUSER:-1000}:${WWWGROUP:-1000}"
image: phpvms:app
image: ghcr.io/phpvms/phpvms:main
restart: unless-stopped
command: [ "php", "/var/www/html/artisan", "queue:work", "--tries=3" ]
environment: