Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

podman #2626

Closed
Closed

podman #2626

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
postgres:
image: postgres:10
image: docker.io/postgres:10
restart: unless-stopped
volumes:
- postgresdata:/var/lib/postgresql/data
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM crystallang/crystal:1.2.1-alpine AS builder
FROM docker.io/crystallang/crystal:1.2.1-alpine AS builder
RUN apk add --no-cache sqlite-static yaml-static

ARG release
Expand Down Expand Up @@ -30,7 +30,7 @@ RUN if [ ${release} == 1 ] ; then \
fi


FROM alpine:latest
FROM docker.io/alpine:latest
RUN apk add --no-cache librsvg ttf-opensans
WORKDIR /invidious
RUN addgroup -g 1000 -S invidious && \
Expand Down