1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-15 03:17:38 +01:00
vichan/docker-compose.yml

45 lines
918 B
YAML
Raw Normal View History

2020-12-28 00:15:12 +01:00
services:
2024-01-17 20:06:22 +01:00
#nginx webserver + php 8.x
2020-12-28 00:15:12 +01:00
web:
2024-01-17 20:06:22 +01:00
image: nginx:1.25.3-alpine
2020-12-28 00:15:12 +01:00
ports:
- "8080:80"
depends_on:
- db
volumes:
- ./:/code
- ./site.conf:/etc/nginx/conf.d/default.conf
networks:
leftchan_net:
ipv4_address: 172.20.0.3
links:
- php
php:
build: .
volumes:
- ./:/code
networks:
leftchan_net:
ipv4_address: 172.20.0.4
#MySQL Service
db:
2024-01-17 20:06:22 +01:00
image: mysql:8.0.35
2020-12-28 00:15:12 +01: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