* on host system container also refactored, some env options moved from .env to docker-compose example * dnsmasq now is separate service file + php 8.3 support * xdebug launch also refactored and lightweight * tested and worked python environment with pyenv (on today without supervisor) * database container and appropriate gui applications for management database systems moved into separate service files + build src php container helper - remove unnecessary docker compose file version directive - remove minio thing from the host php services * use redis-local.conf from example and lightweight main redis conf file
		
			
				
	
	
		
			17 lines
		
	
	
		
			335 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			335 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
services:
 | 
						|
  adminer:
 | 
						|
    image: adminer
 | 
						|
    restart: always
 | 
						|
    ports:
 | 
						|
      - 8081:8080
 | 
						|
  pgadmin:
 | 
						|
    image: dpage/pgadmin4
 | 
						|
    restart: always
 | 
						|
    environment:
 | 
						|
      PGADMIN_DEFAULT_EMAIL: info@wpstudio.ru
 | 
						|
      PGADMIN_DEFAULT_PASSWORD: postgres
 | 
						|
    ports:
 | 
						|
      - "83:80"
 | 
						|
    volumes:
 | 
						|
      - ./hostfiles/pgadmin:/var/lib/pgadmin
 |