Changes auto-committed by Conductor
This commit is contained in:
parent
251a10f5bb
commit
031d40440d
1 changed files with 6 additions and 7 deletions
|
|
@ -22,7 +22,7 @@ services:
|
|||
- .:/var/www/html/:cached
|
||||
- dev_backups_data:/var/www/html/storage/app/backups
|
||||
postgres:
|
||||
pull_policy: never
|
||||
pull_policy: always
|
||||
ports:
|
||||
- "${FORWARD_DB_PORT:-5432}:5432"
|
||||
env_file:
|
||||
|
|
@ -35,7 +35,7 @@ services:
|
|||
volumes:
|
||||
- dev_postgres_data:/var/lib/postgresql/data
|
||||
redis:
|
||||
pull_policy: never
|
||||
pull_policy: always
|
||||
ports:
|
||||
- "${FORWARD_REDIS_PORT:-6379}:6379"
|
||||
env_file:
|
||||
|
|
@ -61,10 +61,10 @@ services:
|
|||
SOKETI_DEFAULT_APP_ID: "${PUSHER_APP_ID:-coolify}"
|
||||
SOKETI_DEFAULT_APP_KEY: "${PUSHER_APP_KEY:-coolify}"
|
||||
SOKETI_DEFAULT_APP_SECRET: "${PUSHER_APP_SECRET:-coolify}"
|
||||
entrypoint: [ "/bin/sh", "/soketi-entrypoint.sh" ]
|
||||
entrypoint: ["/bin/sh", "/soketi-entrypoint.sh"]
|
||||
vite:
|
||||
image: node:24-alpine
|
||||
pull_policy: never
|
||||
pull_policy: always
|
||||
container_name: coolify-vite
|
||||
working_dir: /var/www/html
|
||||
environment:
|
||||
|
|
@ -96,7 +96,7 @@ services:
|
|||
- coolify
|
||||
mailpit:
|
||||
image: axllent/mailpit:latest
|
||||
pull_policy: never
|
||||
pull_policy: always
|
||||
container_name: coolify-mail
|
||||
ports:
|
||||
- "${FORWARD_MAILPIT_PORT:-1025}:1025"
|
||||
|
|
@ -105,7 +105,7 @@ services:
|
|||
- coolify
|
||||
minio:
|
||||
image: minio/minio:latest
|
||||
pull_policy: never
|
||||
pull_policy: always
|
||||
container_name: coolify-minio
|
||||
command: server /data --console-address ":9001"
|
||||
ports:
|
||||
|
|
@ -126,7 +126,6 @@ volumes:
|
|||
dev_coolify_data:
|
||||
dev_minio_data:
|
||||
|
||||
|
||||
networks:
|
||||
coolify:
|
||||
name: coolify
|
||||
|
|
|
|||
Loading…
Reference in a new issue