The top-level version: "2" field is ignored by modern Docker Compose, which warns about it on every invocation. Drop it from docker-compose.yml and the compose-dev-backend, compose-dev-frontend and compose-e2e-test files.
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
services:
|
|
remark:
|
|
# remove the next line in case you want to use this Docker Compose file separately
|
|
# as otherwise it would complain for absence of Dockerfile
|
|
build: .
|
|
image: ghcr.io/umputun/remark42:latest
|
|
container_name: "remark42"
|
|
hostname: "remark42"
|
|
restart: always
|
|
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "5"
|
|
|
|
# uncomment to expose directly (no proxy)
|
|
#ports:
|
|
# - "80:8080"
|
|
# - "443:8443"
|
|
|
|
# uncomment to expose to reverse proxy running on the same host but not in docker
|
|
#ports:
|
|
# - "127.0.0.1:8080:8080"
|
|
|
|
environment:
|
|
- REMARK_URL
|
|
- SECRET
|
|
- DEBUG=true
|
|
- AUTH_GOOGLE_CID
|
|
- AUTH_GOOGLE_CSEC
|
|
- AUTH_GITHUB_CID
|
|
- AUTH_GITHUB_CSEC
|
|
- AUTH_FACEBOOK_CID
|
|
- AUTH_FACEBOOK_CSEC
|
|
- AUTH_DISQUS_CID
|
|
- AUTH_DISQUS_CSEC
|
|
# Enable it only for the initial comment import or for manual backups.
|
|
# Do not leave the server running with the ADMIN_PASSWD set if you don't have an intention
|
|
# to keep creating backups manually!
|
|
# - ADMIN_PASSWD=<your secret password>
|
|
volumes:
|
|
- ./var:/srv/var
|