leftypol/docker-compose.yml

54 lines
1.3 KiB
YAML
Raw Normal View History

2020-12-27 23:15:12 +00:00
services:
2024-01-17 19:06:22 +00:00
#nginx webserver + php 8.x
2020-12-27 23:15:12 +00:00
web:
build:
context: .
dockerfile: ./docker/nginx/Dockerfile
2020-12-27 23:15:12 +00:00
ports:
- "9091:80"
2020-12-27 23:15:12 +00:00
depends_on:
- leftypol-db
2020-12-27 23:15:12 +00:00
volumes:
- ./local-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
2020-12-27 23:15:12 +00:00
networks:
d_leftypol_org:
ipv4_address: 172.21.0.3
2020-12-27 23:15:12 +00:00
links:
- php
php:
build:
context: .
dockerfile: ./docker/php/Dockerfile
2020-12-27 23:15:12 +00:00
volumes:
2024-03-31 21:12:19 +00:00
- ./local-www:/var/www
- ./docker/php/www.conf:/usr/local/etc/php-fpm.d/www.conf
2020-12-27 23:15:12 +00:00
networks:
d_leftypol_org:
ipv4_address: 172.21.0.4
2020-12-27 23:15:12 +00:00
#MySQL Service
leftypol-db:
2024-01-17 19:06:22 +00:00
image: mysql:8.0.35
container_name: leftypol-db
2020-12-27 23:15:12 +00:00
restart: unless-stopped
tty: true
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: vichan
MYSQL_ROOT_PASSWORD: password
command: "--default-authentication-plugin=mysql_native_password"
2020-12-27 23:15:12 +00:00
networks:
d_leftypol_org:
ipv4_address: 172.21.0.2
2020-12-27 23:15:12 +00:00
#Docker Networks
networks:
d_leftypol_org:
2020-12-27 23:15:12 +00:00
ipam:
driver: default
config:
- subnet: 172.21.0.0/16