Homelab Troubleshooting

Tips on running a Linux server and docker.

User Tools

Site Tools


mybb

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
mybb [2021/08/25 15:41] – created alexk7110mybb [2021/08/28 10:43] (current) – [docker-compose.yml] alexk7110
Line 1: Line 1:
 ====== MyBB Troubleshooting Tips ====== ====== MyBB Troubleshooting Tips ======
 +----
 +===== docker-compose.yml =====
 +<code yaml docker-compose.yml>
 +services:
 +  mybb:
 +    image: mybb/mybb:latest
 +    networks:
 +      - nginx_reverse_proxy_default
 +    volumes:
 +      - ${PWD}/mybb:/var/www/html:rw
  
 +  nginx:
 +    image: nginx:mainline-alpine
 +    networks:
 +      - nginx_reverse_proxy_default
 +    volumes:
 +      - ${PWD}/nginx:/etc/nginx/conf.d:ro
 +      - ${PWD}/mybb:/var/www/html:ro
 +
 +  postgresql:
 +    image: postgres:13.2-alpine
 +    environment:
 +      POSTGRES_DB: mybb
 +      POSTGRES_PASSWORD: **your_db_password**
 +      POSTGRES_USER: **your_db_user**
 +    networks:
 +      - nginx_reverse_proxy_default
 +    volumes:
 +      - ${PWD}/postgres/data:/var/lib/postgresql/data:rw
 +
 +  networks:
 +    nginx_reverse_proxy_default:
 +      external: true
 +
 +version: '3.8'
 +</code>
mybb.1629895278.txt.gz · Last modified: 2021/08/25 15:41 by alexk7110