Documentation

This commit is contained in:
Eric van der Vlist 2019-04-17 17:11:05 +02:00
부모 ce6bcaadc3
커밋 ce20d1e740
3개의 변경된 파일13개의 추가작업 그리고 1개의 파일을 삭제

1
.gitignore vendored
파일 보기

@ -2,3 +2,4 @@
secrets/license.xml
mysql-connector-java*.jar
postgresql-*.jar
.idea/

파일 보기

@ -45,7 +45,18 @@ $ cp <postgres-jdbc-driver> postgres/tomcat/lib/
$ cp <my-licence-file> secrets/license.xml
$ docker-compose -f docker-compose-pe.yml -f docker-compose-postgres.yml up
```
## Timezones
Timezones can be tricky to configure using Docker (and docker-compose).
A common way to copy the host timezone in your containers is to share /etc/timezone as a volume:
```
volumes:
- "/etc/timezone:/etc/timezone:ro"
```
This requires, of course, that both your host and the containers relies on this configuration file.
## TODO

파일 보기

@ -19,7 +19,7 @@ services:
POSTGRES_DB: orbeon
POSTGRES_USER: orbeon
volumes:
- "/home/vdv/var/postgres/jouve:/var/lib/postgresql/data"
- "/volumes/orbeon/postgres:/var/lib/postgresql/data"
networks:
- net