mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-10-29 23:32:35 +01:00
3319c49dca
- Bump ruby version - Remove obsolete files, including deploy artefacts - Don't use pride when testing - Store gem and app in same repo - Switch to asdf
24 lines
471 B
YAML
24 lines
471 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: postgres
|
|
volumes:
|
|
- data:/var/lib/postgresql/data
|
|
web:
|
|
build:
|
|
context: ./app
|
|
command: unicorn -c config/unicorn.rb
|
|
environment:
|
|
DATABASE_URL: postgres://postgres@db/postgres
|
|
entrypoint: ./wait-for-it.sh db:5432 -s --
|
|
expose:
|
|
- '8080'
|
|
links:
|
|
- db
|
|
nginx-proxy:
|
|
image: jwilder/nginx-proxy
|
|
volumes:
|
|
- /var/run/docker.sock:/tmp/docker.sock:ro
|
|
volumes:
|
|
data:
|