diff --git a/deploy.sh b/deploy.sh index 3e0fe44..2023050 100755 --- a/deploy.sh +++ b/deploy.sh @@ -6,6 +6,6 @@ set +e docker buildx rm namelessmc_builder set -e docker buildx create --use --name namelessmc_builder -docker buildx build -t namelessmc/namelessmc-nginx --platform=linux/arm,linux/arm64,linux/amd64 nginx_web --push -docker buildx build -t namelessmc/namelessmc-php --platform=linux/arm,linux/arm64,linux/amd64 php_fpm --push +docker buildx build -t namelessmc/nginx --platform=linux/arm,linux/arm64,linux/amd64 nginx_web --push +docker buildx build -t namelessmc/php --platform=linux/arm,linux/arm64,linux/amd64 php_fpm --push docker buildx rm namelessmc_builder diff --git a/docker-compose.yml b/docker-compose.yml index a0c530a..e3eb4b2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ version: '2' services: nginx: - image: namelessmc/nameless-nginx + image: namelessmc/nginx ports: ['80:80'] volumes: ['/srv/namelessmc/web:/data'] # same as php container # environment: @@ -12,7 +12,7 @@ services: restart: unless-stopped php: - image: namelessmc/nameless-php + image: namelessmc/php volumes: ['/srv/namelessmc/web:/data'] # same as web container restart: unless-stopped