Fully qualify image sources

This commit is contained in:
Kienan Stewart 2022-09-12 08:31:34 -04:00
parent 2c11aa4a35
commit c35c481a7d
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM alpine:3.16 FROM docker.io/alpine:3.16
EXPOSE 9000/tcp EXPOSE 9000/tcp
ENV SCRIPT_ROOT=/opt/tt-rss ENV SCRIPT_ROOT=/opt/tt-rss

View File

@ -2,7 +2,7 @@ version: '3'
services: services:
db: db:
image: postgres:12-alpine image: docker.io/postgres:12-alpine
restart: unless-stopped restart: unless-stopped
environment: environment:
- POSTGRES_USER=${TTRSS_DB_USER} - POSTGRES_USER=${TTRSS_DB_USER}

View File

@ -1,4 +1,4 @@
FROM nginx:alpine FROM docker.io/nginx:alpine
HEALTHCHECK CMD curl --fail http://localhost/tt-rss/index.php || exit 1 HEALTHCHECK CMD curl --fail http://localhost/tt-rss/index.php || exit 1