ask for versions, start docker container

This commit is contained in:
Shihaam Abdul Rahman 2024-09-08 06:12:25 +05:00
parent 2a727bf1b2
commit 72e20a080d
Signed by: shihaam
GPG Key ID: 6DA2E87EBC227636
2 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
services:
fpm:
hostname: fpm
image: git.shihaam.dev/dockerfiles/php-fpm:latest
volumes:
- ./:/var/www/html/
nginx:
hostname: nginx
image: git.shihaam.dev/dockerfiles/nginx-fpm:latest
volumes_from:
- fpm
ports:
- 9000:80
composer:
hostname: composer
image: composer:latest
volumes:
- ./:/var/www/html/
working_dir: /var/www/html
node:
hostname: node
image: node:18.20.4
volumes:
- ./:/var/www/html/
working_dir: /var/www/html
mysql:
image: mysql:5.7.44
hostname: mysql
restart: always
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=yes
- MYSQL_USER=cusport
- MYSQL_PASSWORD=cusport
- MYSQL_DATABASE=cusport
volumes:
- ./.db:/var/lib/mysql