diff --git a/docker-compose.yml b/docker-compose.yml index efaf22b..be4cb3b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,6 +6,7 @@ services: # PHP FPM Service php: + image: php:seph container_name: php build: dockerfile: php-dockerfile @@ -17,7 +18,8 @@ services: # Nginx Service nginx: - container_name: web + image: nginx:seph + container_name: nginx build: dockerfile: nginx-dockerfile context: . @@ -28,16 +30,6 @@ services: depends_on: - php - # MariaDB Service -# mariadb: -# container_name: db -# image: mariadb:10.9 -# environment: -# MYSQL_ROOT_PASSWORD: $MYSQLPASS -# volumes: -# - 'mysqldata:/var/lib/mysql' - # Volumes volumes: -# mysqldata: webdata: