40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div>
 | |
|     <h1>Create a new Service</h1>
 | |
|     <div class="pb-4">You can deploy complex services easily with Docker Compose.</div>
 | |
|     <form wire:submit="submit">
 | |
|         <div class="flex gap-2 pb-1">
 | |
|             <h2>Docker Compose</h2>
 | |
|             <x-forms.button type="submit">Save</x-forms.button>
 | |
|         </div>
 | |
|         <x-forms.textarea label="Docker Compose file" rows="20" id="dockerComposeRaw"
 | |
|             placeholder='services:
 | |
|   ghost:
 | |
|     documentation: https://ghost.org/docs/config
 | |
|     image: ghost:5
 | |
|     volumes:
 | |
|       - ghost-content-data:/var/lib/ghost/content
 | |
|     environment:
 | |
|       - url=$SERVICE_FQDN_GHOST
 | |
|       - database__client=mysql
 | |
|       - database__connection__host=mysql
 | |
|       - database__connection__user=$SERVICE_USER_MYSQL
 | |
|       - database__connection__password=$SERVICE_PASSWORD_MYSQL
 | |
|       - database__connection__database=${MYSQL_DATABASE-ghost}
 | |
|     ports:
 | |
|       - "2368"
 | |
|     depends_on:
 | |
|       - mysql
 | |
|   mysql:
 | |
|     documentation: https://hub.docker.com/_/mysql
 | |
|     image: mysql:8.0
 | |
|     volumes:
 | |
|       - ghost-mysql-data:/var/lib/mysql
 | |
|     environment:
 | |
|       - MYSQL_USER=${SERVICE_USER_MYSQL}
 | |
|       - MYSQL_PASSWORD=${SERVICE_PASSWORD_MYSQL}
 | |
|       - MYSQL_DATABASE=${MYSQL_DATABASE}
 | |
|       - MYSQL_ROOT_PASSWORD=${SERVICE_PASSWORD_MYSQL_ROOT}
 | |
| '></x-forms.textarea>
 | |
|     </form>
 | |
| </div>
 | 
