1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-19 01:24:05 +01:00
vichan/docker-compose.yml

41 lines
988 B
YAML
Raw Normal View History

2020-12-27 17:15:12 -06:00
services:
2024-01-17 11:06:22 -08:00
#nginx webserver + php 8.x
2020-12-27 17:15:12 -06:00
web:
2024-04-16 20:51:13 +02:00
build:
context: .
dockerfile: ./docker/nginx/Dockerfile
ports:
- "9090:80"
depends_on:
- db
volumes:
- ./local-instances/1/www:/var/www/html
2024-04-16 20:51:13 +02:00
- ./docker/nginx/vichan.conf:/etc/nginx/conf.d/default.conf
- ./docker/nginx/nginx.conf:/etc/nginx/nginx.conf
- ./docker/nginx/proxy.conf:/etc/nginx/conf.d/proxy.conf
links:
- php
2024-04-16 20:50:27 +02:00
2020-12-27 17:15:12 -06:00
php:
2024-04-16 20:51:13 +02:00
build:
context: .
dockerfile: ./docker/php/Dockerfile
2024-04-16 20:51:13 +02:00
volumes:
- ./local-instances/1/www:/var/www
2024-04-16 20:51:13 +02:00
- ./docker/php/www.conf:/usr/local/etc/php-fpm.d/www.conf
- ./docker/php/jit.ini:/usr/local/etc/php/conf.d/jit.ini
2024-04-16 20:50:27 +02:00
2020-12-27 17:15:12 -06:00
#MySQL Service
db:
2024-01-17 11:06:22 -08:00
image: mysql:8.0.35
2020-12-27 17:15:12 -06:00
container_name: db
restart: unless-stopped
tty: true
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: vichan
MYSQL_ROOT_PASSWORD: password
volumes:
- ./local-instances/1/mysql:/var/lib/mysql