leftypol/docker-compose.yml

40 lines
993 B
YAML
Raw Permalink 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:
build:
context: .
dockerfile: ./docker/nginx/Dockerfile
ports:
- "9091:80"
depends_on:
- leftypol-db
volumes:
- ./local-instances/${INSTANCE:-0}/www:/var/www/html
- ./docker/nginx/leftypol.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:
build:
context: .
dockerfile: ./docker/php/Dockerfile
volumes:
- ./local-instances/${INSTANCE:-0}/www:/var/www
- ./docker/php/www.conf:/usr/local/etc/php-fpm.d/www.conf
2024-04-16 20:50:27 +02:00
2020-12-27 17:15:12 -06:00
#MySQL Service
leftypol-db:
2024-01-17 11:06:22 -08:00
image: mysql:8.0.35
container_name: leftypol-db
2020-12-27 17:15:12 -06:00
restart: unless-stopped
tty: true
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: vichan
MYSQL_ROOT_PASSWORD: password
volumes:
- ./local-instances/${INSTANCE:-0}/mysql:/var/lib/mysql