Created
March 18, 2024 21:34
-
-
Save StephenMiracle/a16f5bee113d2a0d6b68c5e1787c0066 to your computer and use it in GitHub Desktop.
FrankenWP Sample Docker Compose File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| wordpress: | |
| image: stephenmiracle/frankenwp:latest | |
| restart: always | |
| ports: | |
| - "8094:80" # HTTP | |
| # - "80:80" # HTTP | |
| # - "443:443" # HTTPS | |
| # - "443:443/udp" # HTTP/3 | |
| environment: | |
| SERVER_NAME: ${SERVER_NAME:-:80} | |
| WORDPRESS_DB_HOST: ${DB_HOST:-db} | |
| WORDPRESS_DB_USER: ${DB_USER:-exampleuser} | |
| WORDPRESS_DB_PASSWORD: ${DB_PASSWORD:-examplepass} | |
| WORDPRESS_DB_NAME: ${DB_NAME:-exampledb} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment