oops, wrong architecture
This commit is contained in:
parent
79ffd0ac1a
commit
0b86db6413
@ -1,5 +1,5 @@
|
||||
language: python
|
||||
arch: arm64
|
||||
arch: amd64
|
||||
os: linux
|
||||
dist: focal
|
||||
virt: vm
|
||||
|
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
||||
version: '3'
|
||||
|
||||
networks:
|
||||
postgres:
|
||||
external: false
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:13
|
||||
restart: always
|
||||
ports:
|
||||
- "127.0.0.1:5432:5432"
|
||||
environment:
|
||||
- POSTGRES_USER=webshop
|
||||
- POSTGRES_PASSWORD=webshop
|
||||
- POSTGRES_DB=webshop
|
||||
networks:
|
||||
- postgres
|
||||
volumes:
|
||||
- postres-volume:/var/lib/postgresql/data
|
||||
|
||||
volumes:
|
||||
postres-volume:
|
Loading…
Reference in New Issue
Block a user