mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-05-29 22:57:35 +02:00
add commento
This commit is contained in:
parent
129ed7a3fc
commit
ea05e918ea
@ -304,6 +304,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] browserless/chrome
|
- [x] browserless/chrome
|
||||||
- [x] certbot
|
- [x] certbot
|
||||||
- [x] codercom/code-server
|
- [x] codercom/code-server
|
||||||
|
- [ ] registry.gitlab.com/commento/commento
|
||||||
- [x] confluentinc
|
- [x] confluentinc
|
||||||
- [x] cp-kafka-mqtt
|
- [x] cp-kafka-mqtt
|
||||||
- [x] cp-kafka-rest
|
- [x] cp-kafka-rest
|
||||||
|
7
commento/README.md
Normal file
7
commento/README.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
commento
|
||||||
|
========
|
||||||
|
|
||||||
|
[Commento][1] allows you to foster discussion on your website – if you have a blog,
|
||||||
|
you can embed Commento if you want your readers to add comments.
|
||||||
|
|
||||||
|
[1]: https://github.com/adtac/commento
|
27
commento/docker-compose.yml
Normal file
27
commento/docker-compose.yml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
commento:
|
||||||
|
image: registry.gitlab.com/commento/commento
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
environment:
|
||||||
|
- COMMENTO_ORIGIN=http://commento.easypi.tv:8080
|
||||||
|
- COMMENTO_PORT=8080
|
||||||
|
- COMMENTO_POSTGRES=postgres://commento:commento@postgres:5432/commento?sslmode=disable
|
||||||
|
depends_on:
|
||||||
|
- postgres
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
postgres:
|
||||||
|
image: postgres:alpine
|
||||||
|
ports:
|
||||||
|
- "5432:5432"
|
||||||
|
volumes:
|
||||||
|
- ./data:/var/lib/postgresql/data
|
||||||
|
environment:
|
||||||
|
- POSTGRES_USER=commento
|
||||||
|
- POSTGRES_PASSWORD=commento
|
||||||
|
- POSTGRES_DB=commento
|
||||||
|
restart: unless-stopped
|
@ -5,7 +5,7 @@
|
|||||||
FROM alpine:3
|
FROM alpine:3
|
||||||
MAINTAINER EasyPi Software Foundation
|
MAINTAINER EasyPi Software Foundation
|
||||||
|
|
||||||
ENV FRP_VERSION=0.37.1
|
ENV FRP_VERSION=0.38.0
|
||||||
ENV FRP_FILE=frp_${FRP_VERSION}_linux_amd64.tar.gz
|
ENV FRP_FILE=frp_${FRP_VERSION}_linux_amd64.tar.gz
|
||||||
ENV FRP_URL=https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/${FRP_FILE}
|
ENV FRP_URL=https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/${FRP_FILE}
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
FROM alpine:3
|
FROM alpine:3
|
||||||
MAINTAINER EasyPi Software Foundation
|
MAINTAINER EasyPi Software Foundation
|
||||||
|
|
||||||
ENV FRP_VERSION=0.37.1
|
ENV FRP_VERSION=0.38.0
|
||||||
ENV FRP_FILE=frp_${FRP_VERSION}_linux_arm.tar.gz
|
ENV FRP_FILE=frp_${FRP_VERSION}_linux_arm.tar.gz
|
||||||
ENV FRP_URL=https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/${FRP_FILE}
|
ENV FRP_URL=https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/${FRP_FILE}
|
||||||
|
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
postgres:
|
version: "3.8"
|
||||||
image: postgres:13-alpine
|
services:
|
||||||
ports:
|
postgres:
|
||||||
- "5432:5432"
|
image: postgres:alpine
|
||||||
volumes:
|
ports:
|
||||||
- ./data:/var/lib/postgresql/data
|
- "5432:5432"
|
||||||
environment:
|
volumes:
|
||||||
- POSTGRES_USER=postgres
|
- ./data:/var/lib/postgresql/data
|
||||||
- POSTGRES_PASSWORD=postgres
|
environment:
|
||||||
- POSTGRES_DB=postgres
|
- POSTGRES_USER=postgres
|
||||||
restart: unless-stopped
|
- POSTGRES_PASSWORD=postgres
|
||||||
|
- POSTGRES_DB=postgres
|
||||||
|
restart: unless-stopped
|
||||||
|
Loading…
x
Reference in New Issue
Block a user