lasthourcloud/docker-compose.yml

42 lines
1008 B
YAML
Raw Normal View History

2023-04-12 19:23:32 +00:00
services:
2023-05-08 07:24:17 +00:00
coolify:
2023-05-10 07:26:25 +00:00
container_name: coolify
2023-05-08 07:24:17 +00:00
restart: always
working_dir: /var/www/html
extra_hosts:
- 'host.docker.internal:host-gateway'
networks:
- coolify
depends_on:
- postgres
2023-05-25 10:00:09 +00:00
- redis
2024-05-07 13:41:50 +00:00
sentinel:
image: "ghcr.io/coollabsio/sentinel:latest"
container_name: coolify-sentinel
restart: always
networks:
- coolify
2023-05-08 07:24:17 +00:00
postgres:
image: postgres:15-alpine
2023-05-10 07:26:25 +00:00
container_name: coolify-db
restart: always
networks:
- coolify
redis:
image: redis:alpine
container_name: coolify-redis
2023-05-08 07:24:17 +00:00
restart: always
networks:
- coolify
2023-12-05 12:56:11 +00:00
soketi:
2023-12-06 11:57:50 +00:00
image: 'quay.io/soketi/soketi:1.6-16-alpine'
2023-12-08 13:57:11 +00:00
container_name: coolify-realtime
2023-12-05 12:56:11 +00:00
restart: always
networks:
- coolify
2023-04-12 19:23:32 +00:00
networks:
2023-05-08 07:24:17 +00:00
coolify:
2023-05-24 12:56:41 +00:00
name: coolify
2023-05-08 07:24:17 +00:00
driver: bridge
external: true