mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-18 09:11:08 +00:00
Prepending docker.io/ to image names allows projects to be run in alternate runtimes such as podman-compose without additional configuration.
5 lines
206 B
Docker
5 lines
206 B
Docker
FROM docker.io/traefik:2.10.7
|
|
RUN mkdir -p /etc/traefik/acme \
|
|
&& touch /etc/traefik/acme/acme.json \
|
|
&& chmod 600 /etc/traefik/acme/acme.json
|
|
COPY ./compose/production/traefik/traefik.yml /etc/traefik
|