File size: 365 Bytes
87962fe
 
e0cf95f
e8e63b9
e0cf95f
 
 
 
87962fe
 
 
e0cf95f
1
2
3
4
5
6
7
8
9
10
11
12
FROM authelia/authelia:latest

RUN mkdir -p /config && chown -R 1000:1000 /config && chmod -R 775 /config

COPY configuration.yml /config/configuration.yml
COPY users_database.yml /config/users_database.yml

RUN ls -la /config && cat /config/users_database.yml && cat /config/configuration.yml

EXPOSE 7860

CMD ["authelia", "--config", "/config/configuration.yml"]