78 lines
1.9 KiB
YAML
78 lines
1.9 KiB
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: ./be/docker/common/unified/Dockerfile
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
image: git.ismailmasseran.com/topaz/sutera:v3.0.1b
|
|
container_name: sutera-app-production
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${APP_PORT:-80}:80"
|
|
environment:
|
|
- APP_ENV=production
|
|
- APP_DEBUG=true
|
|
- REDIS_HOST=redis
|
|
- REDIS_PASSWORD=${REDIS_PASSWORD}
|
|
- CACHE_DRIVER=redis
|
|
- SESSION_DRIVER=redis
|
|
- QUEUE_CONNECTION=redis
|
|
volumes:
|
|
- app-storage-production:/var/www/storage
|
|
- app-logs-production:/var/www/storage/logs
|
|
- ./.env.production:/var/www/.env:ro
|
|
- ./be/docker/production/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
|
|
networks:
|
|
- sutera-production-network
|
|
depends_on:
|
|
redis:
|
|
condition: service_healthy
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
|
|
# Redis for caching and sessions
|
|
redis:
|
|
image: redis:8
|
|
container_name: sutera-redis-production
|
|
restart: unless-stopped
|
|
volumes:
|
|
- redis-data-production:/data
|
|
- ./redis-config/redis.conf:/usr/local/etc/redis/redis.conf:ro
|
|
command: redis-server /usr/local/etc/redis/redis.conf
|
|
networks:
|
|
- sutera-production-network
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "-a", "${REDIS_PASSWORD}", "ping"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
|
|
networks:
|
|
sutera-production-network:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
app-storage-production:
|
|
driver: local
|
|
app-logs-production:
|
|
driver: local
|
|
redis-data-production:
|
|
driver: local
|