lasthourcloud/docker-compose.yml

29 lines
618 B
YAML
Raw Normal View History

2023-04-12 19:23:32 +00:00
version: '3.8'
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-04-13 13:48:27 +00:00
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-04-12 19:23:32 +00:00
networks:
2023-05-08 07:24:17 +00:00
coolify:
driver: bridge