parent
d583d559d1
commit
9f51c62776
9 changed files with 63 additions and 8 deletions
24
docker-compose-postgresql.yml
Normal file
24
docker-compose-postgresql.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
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:13
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- postgres-storage:/var/lib/postgresql/data
|
||||
restart: always
|
||||
|
||||
volumes:
|
||||
postgres-storage:
|
||||
driver: local
|
||||
Reference in a new issue