pastebin/docker-compose.yml
2020-01-08 15:18:16 +01:00

21 lines
409 B
YAML

version: '3.7'
services:
pastebinrun:
depends_on:
- db
- sandbox
build: .
ports:
- 127.0.0.1:8080:8080
restart: always
environment:
DATABASE_URL: postgresql://postgres@db
SANDBOX_URL: http://sandbox:8888
RUST_LOG: info
db:
image: postgres:12
restart: always
sandbox:
image: registry.gitlab.com/pastebinrun/sandbox/master
restart: always