coolify/docker-compose.yml

21 lines
410 B
YAML
Raw Normal View History

2023-04-12 21:23:32 +02:00
version: '3.8'
services:
2023-05-08 09:24:17 +02:00
coolify:
restart: always
working_dir: /var/www/html
extra_hosts:
- 'host.docker.internal:host-gateway'
networks:
- coolify
depends_on:
- postgres
2023-04-13 15:48:27 +02:00
2023-05-08 09:24:17 +02:00
postgres:
image: postgres:15-alpine
restart: always
networks:
- coolify
2023-04-12 21:23:32 +02:00
networks:
2023-05-08 09:24:17 +02:00
coolify:
driver: bridge