coolify/docker-compose.yml

19 lines
304 B
YAML
Raw Normal View History

2023-04-12 21:23:32 +02:00
version: '3.8'
services:
coolify:
working_dir: /var/www/html
2023-04-14 10:00:42 +02:00
extra_hosts:
- 'host.docker.internal:host-gateway'
2023-04-12 21:23:32 +02:00
networks:
- coolify
depends_on:
- postgres
2023-04-13 15:48:27 +02:00
2023-04-12 21:23:32 +02:00
postgres:
image: postgres:15-alpine
networks:
- coolify
networks:
coolify:
driver: bridge