Initial commit - nettoyage et initialisation
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:16
|
||||
container_name: astalange_db
|
||||
environment:
|
||||
POSTGRES_USER: myuser
|
||||
POSTGRES_PASSWORD: mypassword
|
||||
POSTGRES_DB: astalange
|
||||
ports:
|
||||
- "5433:5432"
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
|
||||
pgadmin:
|
||||
image: dpage/pgadmin4
|
||||
container_name: astalange_pgadmin
|
||||
environment:
|
||||
PGADMIN_DEFAULT_EMAIL: admin@astalange.com
|
||||
PGADMIN_DEFAULT_PASSWORD: admin
|
||||
ports:
|
||||
- "5050:80"
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
Reference in New Issue
Block a user