leftypol/docker-compose.yml

53 lines
1.2 KiB
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:
build:
context: .
dockerfile: ./docker/nginx/Dockerfile
2020-12-27 17:15:12 -06:00
ports:
2024-04-04 17:42:37 +02:00
- "9090:80"
2020-12-27 17:15:12 -06:00
depends_on:
- db
volumes:
- ./:/code
- ./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 17:15:12 -06:00
networks:
leftchan_net:
ipv4_address: 172.20.0.3
links:
- php
php:
build:
context: .
dockerfile: ./docker/php/Dockerfile
2020-12-27 17:15:12 -06:00
volumes:
2024-03-31 23:12:19 +02:00
- ./local-www:/var/www
- ./docker/php/www.conf:/usr/local/etc/php-fpm.d/www.conf
2020-12-27 17:15:12 -06:00
networks:
leftchan_net:
ipv4_address: 172.20.0.4
#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: lainchan
MYSQL_ROOT_PASSWORD: M9q5lO0RxJVh
networks:
leftchan_net:
ipv4_address: 172.20.0.2
#Docker Networks
networks:
leftchan_net:
ipam:
driver: default
config:
- subnet: 172.20.0.0/16