coolify/docker-compose.yml
2023-05-08 09:24:17 +02:00

21 lines
410 B
YAML

version: '3.8'
services:
coolify:
restart: always
working_dir: /var/www/html
extra_hosts:
- 'host.docker.internal:host-gateway'
networks:
- coolify
depends_on:
- postgres
postgres:
image: postgres:15-alpine
restart: always
networks:
- coolify
networks:
coolify:
driver: bridge