This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
mybb [2021/08/25 15:41] – created alexk7110 | mybb [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/ | ||
+ | networks: | ||
+ | - nginx_reverse_proxy_default | ||
+ | volumes: | ||
+ | - ${PWD}/ | ||
+ | nginx: | ||
+ | image: nginx: | ||
+ | networks: | ||
+ | - nginx_reverse_proxy_default | ||
+ | volumes: | ||
+ | - ${PWD}/ | ||
+ | - ${PWD}/ | ||
+ | |||
+ | postgresql: | ||
+ | image: postgres: | ||
+ | environment: | ||
+ | POSTGRES_DB: | ||
+ | POSTGRES_PASSWORD: | ||
+ | POSTGRES_USER: | ||
+ | networks: | ||
+ | - nginx_reverse_proxy_default | ||
+ | volumes: | ||
+ | - ${PWD}/ | ||
+ | |||
+ | networks: | ||
+ | nginx_reverse_proxy_default: | ||
+ | external: true | ||
+ | |||
+ | version: ' | ||
+ | </ |