forked from phpvms/phpvms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup the docker-compose for local testing
- Loading branch information
Showing
4 changed files
with
22 additions
and
64 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,31 @@ | ||
# | ||
# Run with either `make docker-test` or the following Docker command: | ||
# docker-compose -f docker-compose.yml -f docker-compose.local.yml up | ||
# | ||
--- | ||
version: '3' | ||
services: | ||
# This is overriding the docker-compose.yaml file to have a localized version | ||
# of the contianer that you can use for building/testing | ||
app: | ||
# For your own docker-compose, use `image: phpvms:latest` instead of the build/context block | ||
build: | ||
context: . | ||
environment: | ||
DB_HOST: mysql | ||
REDIS_HOST: redis | ||
volumes: | ||
# Uncomment this line if you want to use this for local testing | ||
- ./:/var/www | ||
- ./app:/var/www/app | ||
- ./bootstrap:/var/www/bootstrap | ||
- ./config:/var/www/config | ||
- ./modules:/var/www/modules | ||
- ./public:/var/www/public | ||
- ./resources:/var/www/resources | ||
- ./storage:/var/www/storage | ||
- ./tests:/var/www/tests | ||
- ./composer.json:/var/www/composer.json | ||
- ./composer-lock.json:/var/www/composer-lock.json | ||
- ./env.php:/var/www/env.php | ||
- ./resources/docker/php/www.conf:/usr/local/etc/php-fpm.d/www.conf | ||
depends_on: | ||
- mysql | ||
- redis | ||
|
||
nginx: | ||
image: nginx:1.15.12-alpine | ||
command: /bin/sh -c "exec nginx -g 'daemon off;'" | ||
volumes: | ||
- ./:/var/www | ||
- ./resources/docker/nginx/default.conf:/etc/nginx/conf.d/default.conf | ||
ports: | ||
- 80:80 | ||
depends_on: | ||
- app | ||
|
||
mysql: | ||
image: mysql:5.7 | ||
command: "--innodb_use_native_aio=0" | ||
environment: | ||
MYSQL_DATABASE: phpvms | ||
MYSQL_USER: phpvms | ||
MYSQL_PASSWORD: phpvms | ||
MYSQL_ROOT_PASSWORD: | ||
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' | ||
volumes: | ||
- ./storage/docker/mysql:/var/lib/mysql | ||
- ./resources/docker/mysql:/etc/mysql/conf.d | ||
ports: | ||
- 3306:3306 | ||
|
||
redis: | ||
image: redis:5.0.4-alpine | ||
command: ["redis-server", "--appendonly", "yes"] | ||
volumes: | ||
- ./storage/docker/redis:/data | ||
ports: | ||
- 6379:6379 | ||
restart: always | ||
|
||
# Use this to tail the logs so it's just all in a single window | ||
#logs: | ||
# image: busybox | ||
# command: tail -f -F -n 0 /var/www/storage/logs/laravel.log | ||
# restart: always | ||
# volumes: | ||
# - ./storage:/var/www/storage | ||
# depends_on: | ||
# - app |
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