coolify/docker-compose.yaml

61 lines
1.3 KiB
YAML
Raw Normal View History

2022-02-10 14:47:44 +00:00
version: '3.8'
services:
2023-03-17 14:33:48 +00:00
php:
image: coolify:4
2023-03-17 14:33:48 +00:00
build:
dockerfile: Dockerfile
2023-03-20 12:04:22 +00:00
context: ./docker/dev
2022-02-10 14:47:44 +00:00
ports:
2023-03-17 14:33:48 +00:00
- "${APP_PORT:-8000}:80"
- "${VITE_PORT:-5173}:${VITE_PORT:-5173}"
environment:
PUID: "${USERID:-9999}"
2023-03-18 17:59:37 +00:00
PGID: "${GROUPID:-9999}"
2023-03-17 14:33:48 +00:00
SSL_MODE: 'off'
2022-02-10 14:47:44 +00:00
volumes:
2023-03-18 17:59:37 +00:00
- .:/var/www/html
networks:
- coolify
2023-03-17 14:33:48 +00:00
postgres:
image: postgres:15-alpine
ports:
- "${FORWARD_DB_PORT:-5432}:5432"
2022-09-15 07:34:39 +00:00
volumes:
2023-03-17 14:33:48 +00:00
- db-coolify:/var/lib/postgresql/data
networks:
- coolify
2023-03-17 14:33:48 +00: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 17:59:37 +00:00
2022-02-10 14:47:44 +00:00
volumes:
2023-03-17 14:33:48 +00:00
db-coolify:
driver: local
networks:
coolify:
driver: bridge