mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-08 21:09:36 +08:00
* added docker-compose for development * Added dockerfile for dev dependencies * Made dev configuration more discouraging for use in production * inherited dev settings from example Signed-off-by: Georgy Bekh-Ivanov <georgebekh@mail.ru>
22 lines
468 B
YAML
22 lines
468 B
YAML
version: '2'
|
|
|
|
##########
|
|
# WARNING!
|
|
# This docker-compose file is meant to be used in the development process
|
|
# and WILL perform very poorly in production.
|
|
#
|
|
# For production-ready docker-compose file see:
|
|
# https://github.com/WeblateOrg/docker
|
|
#########
|
|
|
|
services:
|
|
weblate:
|
|
image: weblate-dev:latest
|
|
build:
|
|
context: .
|
|
dockerfile: dev.Dockerfile
|
|
ports:
|
|
- ${WEBLATE_HOST}:8080
|
|
user: $USER_ID:$GROUP_ID
|
|
volumes:
|
|
- $PWD:/srv
|