This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
mybb [2021/08/28 10:40] – [docker-compose.yml] alexk7110 | mybb [2025/08/19 14:43] (current) – removed alexk7110 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== MyBB Troubleshooting Tips ====== | ||
- | ---- | ||
- | ===== docker-compose.yml ===== | ||
- | <code yaml docker-compose.yml> | ||
- | services: | ||
- | mybb: | ||
- | image: mybb/ | ||
- | networks: | ||
- | - nginx_reverse_proxy_default | ||
- | volumes: | ||
- | - ${PWD}/ | ||
- | nginx: | ||
- | image: nginx: | ||
- | networks: | ||
- | - nginx_reverse_proxy_default | ||
- | volumes: | ||
- | - ${PWD}/ | ||
- | - ${PWD}/ | ||
- | |||
- | postgresql: | ||
- | environment: | ||
- | POSTGRES_DB: | ||
- | POSTGRES_PASSWORD: | ||
- | POSTGRES_USER: | ||
- | image: postgres: | ||
- | networks: | ||
- | - nginx_reverse_proxy_default | ||
- | volumes: | ||
- | - ${PWD}/ | ||
- | |||
- | networks: | ||
- | nginx_reverse_proxy_default: | ||
- | external: true | ||
- | |||
- | version: ' | ||
- | </ |