Archived
1
0
Fork 0
This repository has been archived on 2024-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
restockbot/docker-compose.yml

25 lines
442 B
YAML
Raw Normal View History

---
version: "2"
services:
chromium:
container_name: restockbot-chromium
image: montferret/chromium
ports:
- "9222:9222"
restart: always
postgres:
container_name: restockbot-postgres
env_file:
- ./docker/environment
image: postgres:13
ports:
- "5432:5432"
volumes:
- postgres-storage:/var/lib/postgresql/data
restart: always
volumes:
postgres-storage:
driver: local