Permalink
Cannot retrieve contributors at this time
72 lines (68 sloc)
1.88 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
remark42/compose-dev-backend.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# compose file for local development | |
# starts backend on 8080 with basic auth "dev:password" and Dev oauth2 provider on port 8084 | |
# UI on http://127.0.0.1:8080/web | |
# | |
# build remark42 docker image - docker-compose -f compose-dev-backend.yml build | |
# start remark42 service - docker-compose -f compose-dev-backend.yml up | |
version: "2" | |
services: | |
remark42: | |
build: | |
context: . | |
dockerfile: Dockerfile | |
args: | |
- SKIP_BACKEND_TEST | |
- BACKEND_TEST_TIMEOUT | |
- SKIP_FRONTEND_TEST=true | |
- CI | |
- GITHUB_REF | |
- GITHUB_SHA | |
image: umputun/remark42:dev | |
container_name: "remark42-dev" | |
hostname: "remark42-dev" | |
logging: | |
driver: json-file | |
options: | |
max-size: "10m" | |
max-file: "5" | |
ports: | |
- "8080:8080" # primary rest server | |
- "8084:8084" # local oauth2 server | |
environment: | |
# - APP_UID=1000 | |
# - TIME_ZONE=GMT | |
- REMARK_URL=http://127.0.0.1:8080 | |
- SECRET=12345 | |
- DEBUG=true | |
- ADMIN_PASSWD=password | |
- AUTH_DEV=true # activate local oauth "dev" | |
- ADMIN_SHARED_ID=dev_user # set admin flag for default user on local oauth2 | |
- NOTIFY_USERS | |
- NOTIFY_ADMINS | |
- TELEGRAM_TOKEN | |
- NOTIFY_TELEGRAM_CHAN | |
- NOTIFY_EMAIL_FROM | |
- ADMIN_SHARED_EMAIL | |
- SMTP_HOST | |
- SMTP_USERNAME | |
- SMTP_PASSWORD | |
- SMTP_PORT | |
- SMTP_TLS | |
- EMOJI=true | |
- ANON_VOTE=true | |
- VOTES_IP=true | |
- AUTH_EMAIL_ENABLE=true | |
- AUTH_TELEGRAM=true | |
- AUTH_ANON=true | |
- AUTH_GOOGLE_CID=1111 | |
- AUTH_GOOGLE_CSEC=1111 | |
- AUTH_GITHUB_CID=1111 | |
- AUTH_GITHUB_CSEC=1111 | |
- AUTH_FACEBOOK_CID=1111 | |
- AUTH_FACEBOOK_CSEC=1111 | |
- AUTH_TWITTER_CID=1111 | |
- AUTH_TWITTER_CSEC=1111 | |
- AUTH_PATREON_CID=1111 | |
- AUTH_PATREON_CSEC=1111 | |
volumes: | |
- ./var:/srv/var |