Created
June 11, 2021 03:33
-
-
Save Sirpyerre/b59d7e3c3bd00d9e29adb31cd386730b to your computer and use it in GitHub Desktop.
Docker compose, remove mysql
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
# For more information: https://laravel.com/docs/sail | |
version: '3' | |
services: | |
laravel.test: | |
build: | |
context: ./docker/8.0 | |
dockerfile: Dockerfile | |
args: | |
WWWGROUP: '${WWWGROUP}' | |
image: sail-8.0/app | |
ports: | |
- '${APP_PORT:-80}:80' | |
environment: | |
WWWUSER: '${WWWUSER}' | |
LARAVEL_SAIL: 1 | |
volumes: | |
- '.:/var/www/html' | |
networks: | |
- sail | |
depends_on: | |
# - mysql | |
- redis | |
# - selenium | |
# selenium: | |
# image: 'selenium/standalone-chrome' | |
# volumes: | |
# - '/dev/shm:/dev/shm' | |
# networks: | |
# - sail | |
# depends_on: | |
# - laravel.test | |
# mysql: | |
# image: 'mysql:8.0' | |
# ports: | |
# - '${FORWARD_DB_PORT:-3306}:3306' | |
# environment: | |
# MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}' | |
# MYSQL_DATABASE: '${DB_DATABASE}' | |
# MYSQL_USER: '${DB_USERNAME}' | |
# MYSQL_PASSWORD: '${DB_PASSWORD}' | |
# MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' | |
# volumes: | |
# - 'sailmysql:/var/lib/mysql' | |
# networks: | |
# - sail | |
redis: | |
image: 'redis:alpine' | |
ports: | |
- '${FORWARD_REDIS_PORT:-6379}:6379' | |
volumes: | |
- 'sailredis:/data' | |
networks: | |
- sail | |
# memcached: | |
# image: 'memcached:alpine' | |
# ports: | |
# - '11211:11211' | |
# networks: | |
# - sail | |
mailhog: | |
image: 'mailhog/mailhog:latest' | |
ports: | |
- 1025:1025 | |
- 8025:8025 | |
networks: | |
- sail | |
networks: | |
sail: | |
driver: bridge | |
volumes: | |
# sailmysql: | |
# driver: local | |
sailredis: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment