Skip to content

Commit

Permalink
🐳Use FQDN for Docker Images
Browse files Browse the repository at this point in the history
  • Loading branch information
0x46616c6b committed Dec 12, 2024
1 parent 21d767f commit c40e1b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM composer:2.8.3 AS composer
FROM docker.io/composer:2.8.3 AS composer


FROM php:8.2-cli AS builder
FROM docker.io/php:8.2-cli AS builder

RUN apt-get update && \
apt-get install -y libzip-dev nodejs npm zip
Expand All @@ -19,7 +19,7 @@ RUN composer install --no-scripts && \
bin/console assets:install


FROM php:8.2-apache-bookworm
FROM docker.io/php:8.2-apache-bookworm

RUN apt-get update && \
apt-get install -y libpng-dev libsodium-dev libsqlite3-dev libzip-dev zlib1g-dev zip
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- userli

mariadb:
image: mariadb:10.11
image: docker.io/mariadb:10.11
environment:
MYSQL_USER: mail
MYSQL_PASSWORD: password
Expand Down

0 comments on commit c40e1b5

Please sign in to comment.