Created
September 18, 2016 16:16
-
-
Save abiosoft/92fa7575d255ef49ec614485e78ed3c5 to your computer and use it in GitHub Desktop.
Caddy wordpress docker-compose
This file contains 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
:80 | |
root /usr/src/wordpress | |
gzip | |
fastcgi / wordpress:9000 php | |
rewrite { | |
if {path} not_match ^\/wp-admin | |
to {path} {path}/ /index.php?_url={uri} | |
} | |
log stdout | |
errors stderr |
This file contains 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
version: '2' | |
services: | |
db: | |
image: mysql | |
container_name: mysql | |
volumes: | |
- "./.data:/var/lib/mysql" | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: wordpress | |
MYSQL_DATABASE: wordpress | |
MYSQL_USER: wordpress | |
MYSQL_PASSWORD: wordpress | |
wordpress: | |
depends_on: | |
- db | |
image: wordpress:fpm | |
container_name: wordpress | |
links: | |
- db | |
restart: always | |
environment: | |
WORDPRESS_DB_HOST: db:3306 | |
WORDPRESS_DB_PASSWORD: wordpress | |
volumes: | |
- "/usr/src/wordpress" | |
- "./php.ini:/usr/local/etc/php/conf.d/custom.ini" | |
server: | |
image: abiosoft/caddy | |
container_name: caddy | |
restart: always | |
ports: | |
- "80:80" | |
- "443:443" | |
links: | |
- wordpress | |
volumes: | |
- "./Caddyfile:/etc/Caddyfile" | |
volumes_from: | |
- wordpress |
This file contains 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
memory_limit = 32M | |
upload_max_filesize = 24M | |
post_max_size = 32M |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment