mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
35 lines
1005 B
YAML
35 lines
1005 B
YAML
server:
|
|
image: golang:1.12
|
|
working_dir: /server
|
|
volumes:
|
|
- ./server:/server
|
|
- ./local.offen.dev.pem:/server/local.offen.dev.pem
|
|
- ./local.offen.dev-key.pem:/server/local.offen.dev-key.pem
|
|
- $GOPATH/pkg/mod:/go/pkg/mod
|
|
environment:
|
|
- GOPATH=/go
|
|
- POSTGRES_CONNECTION_STRING=postgres://postgres:develop@database:5432/postgres?sslmode=disable
|
|
ports:
|
|
- 8080:8080
|
|
command: go run cmd/server/main.go -conn postgres://postgres:develop@database:5432/postgres?sslmode=disable -key local.offen.dev-key.pem -cert local.offen.dev.pem
|
|
links:
|
|
- database
|
|
|
|
database:
|
|
image: postgres:11.2
|
|
environment:
|
|
- POSTGRES_PASSWORD=develop
|
|
|
|
vault:
|
|
image: timbru31/node-chrome:slim
|
|
working_dir: /vault
|
|
volumes:
|
|
- ./vault:/vault
|
|
- ./local.offen.dev.pem:/vault/local.offen.dev.pem
|
|
- ./local.offen.dev-key.pem:/vault/local.offen.dev-key.pem
|
|
command: npm start -- --port 9977
|
|
ports:
|
|
- 9977:9977
|
|
environment:
|
|
- SERVER_HOST=https://local.offen.dev:8080
|