@ -1 +1,6 @@
#!/bin/bash
docker run --rm docker/whalesay cowsay "Hello M1 III 2021"
docker container run -it --rm python:3 python
@ -0,0 +1,4 @@
FROM ubuntu:18.04
COPY to_run.sh app/to_run.sh
CMD app/to_run.sh
@ -0,0 +1,8 @@
FROM ubuntu:16.04
# Install prerequisites
RUN apt-get update && apt-get install -y \
curl
ENTRYPOINT ["curl", "$arg1"]
@ -0,0 +1,12 @@
FROM python:2.7
COPY app.py requirements.txt app/
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["python", "app.py"]
@ -0,0 +1 @@
{"contact":"mailto:root@localhost","default_connection":"irc:\/\/chat.freenode.net:6697\/%23convos","forced_connection":false,"local_secret":"ae0af0ca954a6cbdab21140bc8ee9fd4ed61da2e","open_to_public":false,"organization_name":"Convos","organization_url":"https:\/\/convos.chat","session_secrets":["b0380806bb44f207e29df921f20c91ad7ffd4afe"]}
@ -0,0 +1,10 @@
version: '3'
services:
convos:
image: nordaaker/convos:release-4.33
container_name: convos
ports:
- 2021:3000
volumes:
- ./convos:/data