Last active
August 18, 2017 12:48
-
-
Save brisbanewebdeveloper/f872983cac0c01e61c71e1f73303fa57 to your computer and use it in GitHub Desktop.
Docker Compose File
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
# https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes | |
# https://docs.docker.com/compose/compose-file/ | |
version: "3" | |
services: | |
web: | |
image: nginx:latest | |
ports: | |
#- "8080:80" | |
- "8080:8080" | |
restart: always | |
volumes: | |
- ./code:/code | |
- ./site.conf:/etc/nginx/conf.d/site.conf | |
links: | |
- php | |
php: | |
build: | |
context: . | |
dockerfile: php.dockerfile | |
restart: always | |
volumes: | |
- ./code:/code | |
links: | |
- db | |
db: | |
image: mariadb:latest | |
restart: always | |
environment: | |
- MYSQL_DATABASE=test | |
- MYSQL_ROOT_PASSWORD=password | |
- MYSQL_USER=example | |
- MYSQL_PASSWORD=example | |
ports: | |
- "8306:3306" | |
volumes: | |
- ./database:/var/lib/mysql |
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
# Workaround for slow docker-compose | |
# https://github.com/docker/compose/issues/3419#issuecomment-221793401 | |
# sudo tcpdump -A -s0 -nni en0 port 53 | |
127.0.0.1 localunixsocket.local |
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
FROM php:5.6-fpm | |
RUN docker-php-ext-install pdo pdo_mysql |
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
server { | |
server_name localhost; | |
listen 8080; | |
index index.php index.html; | |
error_log /var/log/nginx/error.log; | |
access_log /var/log/nginx/access.log; | |
root /code; | |
location ~ \.php$ { | |
try_files $uri =404; | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_pass php:9000; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
fastcgi_param PATH_INFO $fastcgi_path_info; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment