mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 02:52:49 +01:00
20 lines
327 B
YAML
20 lines
327 B
YAML
version: '2'
|
|
services:
|
|
db:
|
|
image: postgres
|
|
memcache:
|
|
image: memcached
|
|
web:
|
|
build: .
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- 8080:8080
|
|
environment:
|
|
RACK_ENV: production
|
|
DATABASE_URL: postgres://postgres@db/postgres
|
|
MEMCACHE_SERVERS: memcache
|
|
links:
|
|
- db
|
|
- memcache
|