coolify/docker-compose.yaml

64 lines
1.5 KiB
YAML
Raw Normal View History

2022-02-10 15:47:44 +01:00
version: '3.8'
services:
2023-03-17 15:33:48 +01:00
php:
2023-03-20 22:17:28 +01:00
image: "coolify:${TAG:-4}"
2023-03-17 15:33:48 +01:00
build:
2023-03-20 13:04:22 +01:00
context: ./docker/dev
dockerfile: Dockerfile
args:
WWWGROUP: '${WWWGROUP}'
2022-02-10 15:47:44 +01:00
ports:
2023-03-17 15:33:48 +01:00
- "${APP_PORT:-8000}:80"
- "${VITE_PORT:-5173}:${VITE_PORT:-5173}"
environment:
WWWUSER: "${WWWUSER}"
LARAVEL_SAIL: 1
XDEBUG_MODE: "${SAIL_XDEBUG_MODE:-off}"
XDEBUG_CONFIG: "${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}"
2022-02-10 15:47:44 +01:00
volumes:
2023-03-18 18:59:37 +01:00
- .:/var/www/html
networks:
- coolify
2023-03-17 15:33:48 +01:00
postgres:
image: postgres:15-alpine
ports:
- "${FORWARD_DB_PORT:-5432}:5432"
2022-09-15 09:34:39 +02:00
volumes:
2023-03-17 15:33:48 +01:00
- db-coolify:/var/lib/postgresql/data
networks:
- coolify
2023-03-17 15:33:48 +01:00
environment:
POSTGRES_USER: "${DB_USERNAME}"
POSTGRES_PASSWORD: "${DB_PASSWORD}"
POSTGRES_DB: "${DB_DATABASE}"
POSTGRES_HOST_AUTH_METHOD: "trust"
healthcheck:
test:
[
"CMD-SHELL",
"pg_isready -U $$DB_USERNAME",
"-d",
"db_prod"
]
retries: 3
timeout: 5s
testing-host:
container_name: coolify-testing-host
image: coolify-testing-host
build:
dockerfile: Dockerfile
context: ./docker/testing-host
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./docker/testing-host/supervisord.conf:/etc/supervisor/conf.d/supervisord.conf
networks:
- coolify
2023-03-18 18:59:37 +01:00
2022-02-10 15:47:44 +01:00
volumes:
2023-03-17 15:33:48 +01:00
db-coolify:
driver: local
networks:
coolify:
driver: bridge