24 lines
445 B
YAML
24 lines
445 B
YAML
---
|
|
version: "2"
|
|
|
|
services:
|
|
chromium:
|
|
container_name: restockbot-chromium
|
|
image: montferret/chromium
|
|
ports:
|
|
- "9222:9222"
|
|
restart: always
|
|
postgres:
|
|
container_name: restockbot-postgres
|
|
env_file:
|
|
- ./docker/postgresql.env
|
|
image: postgres:14
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres-storage:/var/lib/postgresql/data
|
|
restart: always
|
|
|
|
volumes:
|
|
postgres-storage:
|
|
driver: local
|