2019-03-24 14:57:29 +01:00
|
|
|
version: '3.4'
|
|
|
|
services:
|
|
|
|
db:
|
2020-02-23 21:32:22 +01:00
|
|
|
image: postgres:12
|
2019-09-05 06:09:56 +02:00
|
|
|
ports:
|
|
|
|
- "5432:5432"
|
2020-02-23 21:32:22 +01:00
|
|
|
environment:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: postgres
|
2019-03-24 14:57:29 +01:00
|
|
|
|
2019-04-13 16:30:02 +02:00
|
|
|
# redis:
|
|
|
|
# image: redis:alpine
|
|
|
|
# command: ["redis-server", "--appendonly", "yes"]
|
|
|
|
# ports:
|
|
|
|
# - "6379:6379"
|
|
|
|
|
2019-10-01 06:00:15 +02:00
|
|
|
rails_app:
|
2019-10-03 04:49:58 +02:00
|
|
|
build: examples/rails-app/.
|
2019-10-01 06:00:15 +02:00
|
|
|
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
|
|
|
|
volumes:
|
2019-10-03 04:49:58 +02:00
|
|
|
- ./examples/rails-app:/app
|
2019-10-01 06:00:15 +02:00
|
|
|
- /app/tmp
|
|
|
|
ports:
|
|
|
|
- "3000:3000"
|
|
|
|
depends_on:
|
|
|
|
- db
|
2019-08-04 08:23:23 +02:00
|
|
|
|
2019-03-24 14:57:29 +01:00
|
|
|
super_graph:
|
|
|
|
build:
|
|
|
|
context: .
|
2019-03-28 17:36:24 +01:00
|
|
|
target: go-build
|
2019-03-24 14:57:29 +01:00
|
|
|
environment:
|
|
|
|
GO_ENV: "development"
|
2019-07-30 07:38:05 +02:00
|
|
|
PORT: 8080
|
2019-03-24 14:57:29 +01:00
|
|
|
ports:
|
|
|
|
- "8080:8080"
|
|
|
|
volumes:
|
|
|
|
- .:/app
|
|
|
|
working_dir: /app
|
2019-10-25 07:39:59 +02:00
|
|
|
command: wtc
|
2019-06-06 14:57:00 +02:00
|
|
|
depends_on:
|
|
|
|
- db
|
2019-12-25 07:24:30 +01:00
|
|
|
# - rails_app
|
2019-06-14 06:32:15 +02:00
|
|
|
|
2019-06-06 14:57:00 +02:00
|
|
|
# - redis
|